Changeset 344 for trunk/include
- Timestamp:
- Jul 20, 1999, 5:45:47 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/winres.h
r341 r344 1 /* $Id: winres.h,v 1. 2 1999-07-20 07:41:23sandervl Exp $ */1 /* $Id: winres.h,v 1.3 1999-07-20 15:45:47 sandervl Exp $ */ 2 2 3 3 /* … … 73 73 virtual PVOID lockOS2Resource(); //get converted OS/2 resource 74 74 75 ULONG sizeofResource() { return ressize; }; 75 ULONG sizeofResource() { return ressize; }; 76 77 ULONG getOS2Handle() { return OS2ResHandle; }; 78 void setOS2Handle(ULONG handle) { OS2ResHandle = handle; }; 76 79 77 80 static void destroyAll(Win32Image *module); … … 80 83 81 84 private: 85 PVOID ConvertBitmap(void *bmpdata); 86 82 87 Win32Image *module; 83 88 … … 90 95 PVOID winresdata; 91 96 92 PVOID ConvertBitmap(void *bmpdata);97 ULONG OS2ResHandle; 93 98 94 99 ULONG ressize; 95 100 96 101 // Linked list management 97 102 Win32Resource* next; // Next Resource in module 98 103 99 104 friend class Win32Image;
Note:
See TracChangeset
for help on using the changeset viewer.