Changeset 953 for trunk/include/winres.h
- Timestamp:
- Sep 16, 1999, 1:29:51 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/winres.h
r816 r953 1 /* $Id: winres.h,v 1. 9 1999-09-04 12:42:10sandervl Exp $ */1 /* $Id: winres.h,v 1.10 1999-09-15 23:29:08 sandervl Exp $ */ 2 2 3 3 /* … … 13 13 #define __WINRES_H__ 14 14 15 class Win32Image ;15 class Win32ImageBase; 16 16 17 17 //Use to distinguish between converted OS/2 resources in an image (pe2lx'ed) or … … 27 27 // Constructors and destructors 28 28 Win32Resource(); //custum resource (i.e. created by app in runtime) 29 Win32Resource(Win32Image *module, HRSRC hRes, ULONG id, ULONG type);30 Win32Resource(Win32Image *module, ULONG id, ULONG type,29 Win32Resource(Win32ImageBase *module, HRSRC hRes, ULONG id, ULONG type); 30 Win32Resource(Win32ImageBase *module, ULONG id, ULONG type, 31 31 ULONG size, char *resdata); 32 32 virtual ~Win32Resource(); … … 43 43 void setOS2Handle(ULONG handle) { OS2ResHandle = handle; }; 44 44 45 static void destroyAll(Win32Image *module);45 static void destroyAll(Win32ImageBase *module); 46 46 47 47 protected: … … 51 51 PVOID convertResource(void *win32res); 52 52 53 Win32Image *module;53 Win32ImageBase *module; 54 54 55 55 HRSRC hres; … … 72 72 73 73 private: 74 friend class Win32Image ;74 friend class Win32ImageBase; 75 75 }; 76 76 … … 97 97 98 98 99 #define MAX_RES 17 100 extern char *ResTypes[MAX_RES]; 101 99 102 #endif
Note:
See TracChangeset
for help on using the changeset viewer.