Changeset 1843 for trunk/include
- Timestamp:
- Nov 26, 1999, 1:04:33 AM (26 years ago)
- Location:
- trunk/include
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/os2wrap.h
r1401 r1843 1 /* $Id: os2wrap.h,v 1. 9 1999-10-22 18:02:52sandervl Exp $ */1 /* $Id: os2wrap.h,v 1.10 1999-11-26 00:04:30 sandervl Exp $ */ 2 2 #ifndef __OS2WRAP_H__ 3 3 #define __OS2WRAP_H__ … … 9719 9719 } 9720 9720 9721 #undef GpiCreatePS 9722 #define GpiCreatePS _GpiCreatePS 9723 9721 9724 inline BOOL _GpiDestroyPS(HPS a) 9722 9725 { -
trunk/include/windllbase.h
r1812 r1843 1 /* $Id: windllbase.h,v 1. 4 1999-11-22 20:36:53sandervl Exp $ */1 /* $Id: windllbase.h,v 1.5 1999-11-26 00:04:32 sandervl Exp $ */ 2 2 3 3 /* … … 62 62 static void tlsDetachThreadFromAllDlls(); 63 63 64 virtual ULONG getApi(char *name) = 0;65 virtual ULONG getApi(int ordinal) = 0;66 67 64 BOOL attachProcess(); 68 65 BOOL detachProcess(); -
trunk/include/windlllx.h
r978 r1843 1 /* $Id: windlllx.h,v 1. 2 1999-09-18 17:45:23sandervl Exp $ */1 /* $Id: windlllx.h,v 1.3 1999-11-26 00:04:32 sandervl Exp $ */ 2 2 3 3 /* … … 24 24 virtual ULONG Release(); 25 25 26 virtual ULONG getApi(char *name);27 virtual ULONG getApi(int ordinal);28 29 26 virtual BOOL isLxDll(); 30 27 -
trunk/include/windllpe2lx.h
r1327 r1843 1 /* $Id: windllpe2lx.h,v 1. 3 1999-10-17 01:52:19 birdExp $ */1 /* $Id: windllpe2lx.h,v 1.4 1999-11-26 00:04:32 sandervl Exp $ */ 2 2 3 3 /* … … 29 29 BOOL init(); 30 30 31 /** @cat Exports */32 virtual ULONG getApi(char *name);33 virtual ULONG getApi(int ordinal);34 35 31 /** @cat Query */ 36 32 virtual BOOL isLxDll(); -
trunk/include/windllpeldr.h
r953 r1843 1 /* $Id: windllpeldr.h,v 1. 1 1999-09-15 23:29:37sandervl Exp $ */1 /* $Id: windllpeldr.h,v 1.2 1999-11-26 00:04:32 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 24 24 virtual BOOL init(ULONG reservedMem); 25 virtual ULONG getApi(char *name);26 virtual ULONG getApi(int ordinal);27 25 28 26 virtual BOOL isLxDll(); -
trunk/include/winfakepeldr.h
r1413 r1843 1 /* $Id: winfakepeldr.h,v 1. 1 1999-10-23 12:36:09sandervl Exp $ */1 /* $Id: winfakepeldr.h,v 1.2 1999-11-26 00:04:32 sandervl Exp $ */ 2 2 3 3 /* … … 22 22 virtual ~Win32PeLdrRsrcImg(); 23 23 24 virtual ULONG getApi(char *name); 25 virtual ULONG getApi(int ordinal); 26 24 27 virtual BOOL isDll(); 25 28 -
trunk/include/winimagebase.h
r1812 r1843 1 /* $Id: winimagebase.h,v 1. 4 1999-11-22 20:36:53 sandervl Exp $ */1 /* $Id: winimagebase.h,v 1.5 1999-11-26 00:04:33 sandervl Exp $ */ 2 2 3 3 /* … … 79 79 void tlsDetachThread(); //destroy TLS structures 80 80 81 virtual ULONG getApi(char *name) = 0; 82 virtual ULONG getApi(int ordinal) = 0; 83 81 84 virtual BOOL isDll() = 0; 82 85 -
trunk/include/winimagelx.h
r978 r1843 1 /* $Id: winimagelx.h,v 1. 2 1999-09-18 17:45:23 sandervl Exp $ */1 /* $Id: winimagelx.h,v 1.3 1999-11-26 00:04:33 sandervl Exp $ */ 2 2 3 3 /* … … 21 21 virtual ~Win32LxImage(); 22 22 23 virtual ULONG getApi(char *name); 24 virtual ULONG getApi(int ordinal); 25 23 26 protected: 24 27 private: -
trunk/include/winimagepe2lx.h
r1327 r1843 1 /* $Id: winimagepe2lx.h,v 1. 3 1999-10-17 01:52:20 birdExp $ */1 /* $Id: winimagepe2lx.h,v 1.4 1999-11-26 00:04:33 sandervl Exp $ */ 2 2 3 3 /* … … 43 43 virtual BOOL init(); 44 44 45 /** @cat Exports */ 46 virtual ULONG getApi(char *name); 47 virtual ULONG getApi(int ordinal); 48 45 49 private: 46 50 /** @cat constructor helpers */ -
trunk/include/winimagepeldr.h
r1833 r1843 1 /* $Id: winimagepeldr.h,v 1. 6 1999-11-24 19:33:34sandervl Exp $ */1 /* $Id: winimagepeldr.h,v 1.7 1999-11-26 00:04:33 sandervl Exp $ */ 2 2 3 3 /* … … 82 82 virtual BOOL init(ULONG reservedMem); 83 83 84 virtual ULONG getApi(char *name); 85 virtual ULONG getApi(int ordinal); 86 84 87 //commits image page(s) when an access violation exception is dispatched 85 88 BOOL commitPage(ULONG virtAddress, BOOL fWriteAccess, int fPageCmd = SECTION_PAGES);
Note:
See TracChangeset
for help on using the changeset viewer.