Changeset 754 for trunk/include/winres.h
- Timestamp:
- Aug 31, 1999, 4:39:16 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/winres.h
r589 r754 1 /* $Id: winres.h,v 1. 6 1999-08-19 19:51:18sandervl Exp $ */1 /* $Id: winres.h,v 1.7 1999-08-31 14:39:16 sandervl Exp $ */ 2 2 3 3 /* … … 17 17 //Use to distinguish between converted OS/2 resources in an image (pe2lx'ed) or 18 18 //resources that are loaded from the original win32 image (pe loader) 19 #define RSRC_PELOADER 0 20 #define RSRC_PE2LX 1 19 #define RSRC_PELOADER 0 20 #define RSRC_PE2LX 1 21 #define RSRC_CUSTOMNODATA 2 //resources created in runtime without data (i.e. CreateMenu) 22 #define RSRC_CUSTOMINDIRECT 3 //resources indirectly created in runtime (i.e. CreateMenuIndirect) 21 23 22 24 class Win32Resource … … 24 26 public: 25 27 // Constructors and destructors 28 Win32Resource(); //custum resource (i.e. created by app in runtime) 26 29 Win32Resource(Win32Image *module, HRSRC hRes, ULONG id, ULONG type); 27 30 Win32Resource(Win32Image *module, ULONG id, ULONG type, … … 41 44 protected: 42 45 43 private:44 46 PVOID convertOS2Bitmap(void *bmpdata); 45 47 … … 64 66 Win32Resource* next; // Next Resource in module 65 67 68 private: 66 69 friend class Win32Image; 67 70 };
Note:
See TracChangeset
for help on using the changeset viewer.