Changeset 685 for trunk/include
- Timestamp:
- Aug 25, 1999, 2:29:26 PM (26 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/virtual.h
r607 r685 1 /* $Id: virtual.h,v 1. 1 1999-08-21 16:30:53sandervl Exp $ */1 /* $Id: virtual.h,v 1.2 1999-08-25 12:29:26 sandervl Exp $ */ 2 2 3 3 /* … … 10 10 #define __VIRTUAL_H 11 11 12 LPVOID WINAPI VIRTUAL_MapFileA( LPCSTR name ); 13 LPVOID WINAPI VIRTUAL_MapFileW( LPCWSTR name ); 12 HANDLE WINAPI VIRTUAL_MapFileA( LPCSTR name , LPVOID *lpMapping); 13 HANDLE WINAPI VIRTUAL_MapFileW( LPCWSTR name , LPVOID *lpMapping); 14 15 #ifndef _OS2WIN_H 16 void WINAPI CloseHandle(HANDLE hHandle); 17 #endif 14 18 15 19 #endif /* __VIRTUAL_H */ -
trunk/include/winimage.h
r651 r685 1 /* $Id: winimage.h,v 1.1 0 1999-08-23 17:04:14sandervl Exp $ */1 /* $Id: winimage.h,v 1.11 1999-08-25 12:29:25 sandervl Exp $ */ 2 2 3 3 /* … … 114 114 virtual ~Win32Image(); 115 115 116 //called to reset object to native OS/2 or converted win32 dll117 void OS2ImageInit(HINSTANCE hinstance, int NameTableId, int Win32TableId);118 119 116 //reservedMem is address of memory reserved in peldr.dll (allocated before 120 117 //any dlls are loaded, so that exes without fixups can be loaded at a low … … 160 157 161 158 protected: 159 //called to reset object to native OS/2 or converted win32 dll 160 void OS2ImageInit(HINSTANCE hinstance, int NameTableId, int Win32TableId); 161 162 162 void tlsAlloc(); //Allocate TLS index for this module 163 163 void tlsDelete(); //Destroy TLS index for this module
Note:
See TracChangeset
for help on using the changeset viewer.