Changeset 2877 for trunk/kLdr/kLdrMod.c
- Timestamp:
- Nov 12, 2006, 1:39:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrMod.c
r2859 r2877 208 208 209 209 /** 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 #else225 # error "Port me"226 #endif227 return -1;228 }229 230 231 232 /**233 210 * Closes an open module. 234 211 *
Note:
See TracChangeset
for help on using the changeset viewer.