Changeset 8833 for trunk/include
- Timestamp:
- Jul 5, 2002, 4:46:58 PM (23 years ago)
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/custombuild.h
r8736 r8833 105 105 void WIN32API CustForce2GBFileSize(); 106 106 107 //Logging of exceptions: 108 //Override filename of exception log (expects full path) 109 void WIN32API SetCustomExceptionLog(LPSTR lpszLogName); 110 //Enable/disable exception logging 111 void WIN32API SetExceptionLogging(BOOL fEnable); 112 113 107 114 #endif /*__CUSTOMBUILD_H__*/ 108 115 -
trunk/include/win32api.h
r8779 r8833 198 198 LONG WIN32API GetWindowLongW(HWND,INT); 199 199 200 INT WIN32API MessageBoxExA(HWND,LPCSTR,LPCSTR,UINT,WORD); 201 INT WIN32API MessageBoxA(HWND,LPCSTR,LPCSTR,UINT); 202 200 203 #endif -
trunk/include/winconst.h
r8551 r8833 1971 1971 #define DROPEFFECT_SCROLL_W 0x80000000 1972 1972 1973 #define MB_OK_W 0x00000000 1974 #define MB_OKCANCEL_W 0x00000001 1975 #define MB_ABORTRETRYIGNORE_W 0x00000002 1976 #define MB_YESNOCANCEL_W 0x00000003 1977 #define MB_YESNO_W 0x00000004 1978 #define MB_RETRYCANCEL_W 0x00000005 1979 #define MB_TYPEMASK_W 0x0000000F 1980 1981 #define MB_ICONHAND_W 0x00000010 1982 #define MB_ICONQUESTION_W 0x00000020 1983 #define MB_ICONEXCLAMATION_W 0x00000030 1984 #define MB_ICONASTERISK_W 0x00000040 1985 #define MB_USERICON_W 0x00000080 1986 #define MB_ICONMASK_W 0x000000F0 1987 1988 #define MB_ICONINFORMATION_W MB_ICONASTERISK 1989 #define MB_ICONSTOP_W MB_ICONHAND 1990 #define MB_ICONWARNING_W MB_ICONEXCLAMATION 1991 #define MB_ICONERROR_W MB_ICONHAND 1992 1993 /* Standard dialog button IDs */ 1994 #define IDOK_W 1 1995 #define IDCANCEL_W 2 1996 #define IDABORT_W 3 1997 #define IDRETRY_W 4 1998 #define IDIGNORE_W 5 1999 #define IDYES_W 6 2000 #define IDNO_W 7 2001 #define IDCLOSE_W 8 2002 #define IDHELP_W 9 2003 1973 2004 #endif //__WINCONST_H__
Note:
See TracChangeset
for help on using the changeset viewer.