Changeset 1676 for trunk/src/emx/include/os2emx.h
- Timestamp:
- Dec 2, 2004, 2:42:51 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/os2emx.h
-
Property cvs2svn:cvs-rev
changed from
1.25
to1.26
r1675 r1676 13529 13529 APIRET APIENTRY DosCloseEventSemEx(HEV hev); 13530 13530 13531 /** 13532 * Extended DosLoadModule() which will make sure the loaded module is 13533 * loaded in a forked process. 13534 */ 13535 APIRET APIENTRY DosLoadModuleEx(PSZ pszObject, ULONG cbObject, PCSZ pszModule, PHMODULE phmod); 13536 13537 /** 13538 * Free module loaded using the extended APIs. 13539 */ 13540 APIRET APIENTRY DosFreeModuleEx(HMODULE hmod); 13541 13542 13531 13543 #ifdef INCL_EXAPIS_MAPPINGS 13532 13544 … … 13542 13554 #define DosCloseEventSem(a) DosCloseEventSemEx((a)) 13543 13555 13556 #define DosLoadModule(a,b,c,d) DosLoadModuleEx(a,b,c,d) 13557 #define DosFreeModule(a) DosFreeModuleEx(a) 13558 13544 13559 #endif /* INCL_EXAPIS_MAPPINGS */ 13545 13560 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.