Changeset 2877 for trunk/kLdr/kLdrMod.c


Ignore:
Timestamp:
Nov 12, 2006, 1:39:49 PM (19 years ago)
Author:
bird
Message:

Module interpreter for modules loaded by the native loader. (untested)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrMod.c

    r2859 r2877  
    208208
    209209/**
    210  * Open a executable image using the native loader (if any).
    211  *
    212  * @returns 0 on success and *ppMod pointing to a module instance.
    213  *          On failure, a non-zero OS specific error code is returned.
    214  * @param   pszFilename     The filename to open.
    215  * @param   ppMod           Where to store the module handle.
    216  */
    217 int kLdrModOpenNative(const char *pszFilename, PPKLDRMOD ppMod)
    218 {
    219 #ifdef __OS2__
    220 
    221     //DosLoadModule()
    222 #elif defined(__WIN__)
    223 
    224 #else
    225 # error "Port me"
    226 #endif
    227     return -1;
    228 }
    229 
    230 
    231 
    232 /**
    233210 * Closes an open module.
    234211 *
Note: See TracChangeset for help on using the changeset viewer.