Ignore:
Timestamp:
Oct 25, 2006, 12:26:01 AM (19 years ago)
Author:
bird
Message:

specified more of the api.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrInternal.h

    r2827 r2832  
    8686 * Dynamic loader module.
    8787 */
    88 typedef struct KLDRDY
     88typedef struct KLDRDYMOD
    8989{
    9090    /** The next module in the list. */
    91     PKLDRDY             pNext;
     91    struct KLDRDYMOD   *pNext;
    9292    /** The prev module in the list. */
    93     PKLDRDY             pPrev;
     93    struct KLDRDYMOD   *pPrev;
    9494    /** The module. */
    9595    PKLDRMOD            pMod;
     
    110110    /** Reserved for future use. */
    111111    uint32_t            fReserved : 29;
    112 } KLDRDY;
     112} KLDRDYMOD, *PKLDRDYMOD;
    113113
    114114
    115115/** Pointer to the head module (the executable). */
    116 extern PKLDRDY          kLdrModuleHead;
     116extern PKLDRDYMOD        kLdrModuleHead;
    117117/** Pointer to the tail module. */
    118 extern PKLDRDY          kLdrModuleTail;
     118extern PKLDRDYMOD        kLdrModuleTail;
    119119/** The Library search path. */
    120120extern char             kLdrLibraryPath[4096];
Note: See TracChangeset for help on using the changeset viewer.