Changeset 953 for trunk/include
- Timestamp:
- Sep 16, 1999, 1:29:51 AM (26 years ago)
- Location:
- trunk/include
- Files:
-
- 13 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/versionos2.h
r281 r953 1 /* $Id: versionos2.h,v 1. 3 1999-07-07 08:11:09sandervl Exp $ */1 /* $Id: versionos2.h,v 1.4 1999-09-15 23:29:08 sandervl Exp $ */ 2 2 3 3 #ifndef __VERSIONOS2__H__ … … 19 19 * 20 20 */ 21 #define PE2LX_VERSION 321 #define PE2LX_VERSION 4 22 22 23 23 #ifndef SYSTEM -
trunk/include/winconst.h
r902 r953 1 /* $Id: winconst.h,v 1. 6 1999-09-10 18:56:35 dengertExp $ */1 /* $Id: winconst.h,v 1.7 1999-09-15 23:29:08 sandervl Exp $ */ 2 2 3 3 /* … … 165 165 #define COMPLEXREGION_W 3 166 166 167 /* ShowWindow() codes */ 168 #define SW_HIDE_W 0 169 #define SW_SHOWNORMAL_W 1 170 #define SW_NORMAL_W 1 171 #define SW_SHOWMINIMIZED_W 2 172 #define SW_SHOWMAXIMIZED_W 3 173 #define SW_MAXIMIZE_W 3 174 #define SW_SHOWNOACTIVATE_W 4 175 #define SW_SHOW_W 5 176 #define SW_MINIMIZE_W 6 177 #define SW_SHOWMINNOACTIVE_W 7 178 #define SW_SHOWNA_W 8 179 #define SW_RESTORE_W 9 180 #define SW_SHOWDEFAULT_W 10 181 #define SW_MAX_W 10 182 #define SW_NORMALNA_W 0xCC /* undoc. flag in MinMaximize */ -
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 -
trunk/include/winresmenu.h
r761 r953 1 /* $Id: winresmenu.h,v 1. 2 1999-08-31 17:15:53sandervl Exp $ */1 /* $Id: winresmenu.h,v 1.3 1999-09-15 23:29:09 sandervl Exp $ */ 2 2 3 3 /* … … 20 20 // Constructors and destructors 21 21 Win32MenuRes(HWND hwndObjectMenu); 22 Win32MenuRes(Win32Image *module, HRSRC hRes, ULONG id, ULONG type);23 Win32MenuRes(Win32Image *module, ULONG id, ULONG type,22 Win32MenuRes(Win32ImageBase *module, HRSRC hRes, ULONG id, ULONG type); 23 Win32MenuRes(Win32ImageBase *module, ULONG id, ULONG type, 24 24 ULONG size, char *resdata); 25 25 Win32MenuRes(LPVOID menutemplate); -
trunk/include/wprocess.h
r320 r953 1 /* $Id: wprocess.h,v 1. 6 1999-07-17 09:19:15sandervl Exp $ */1 /* $Id: wprocess.h,v 1.7 1999-09-15 23:29:09 sandervl Exp $ */ 2 2 /* 3 3 * Process help functions … … 29 29 30 30 extern BOOL fExeStarted; 31 extern BOOL fFreeLibrary; 31 32 32 33 //Flat pointer to thread TIB structure
Note:
See TracChangeset
for help on using the changeset viewer.