Changeset 1923
- Timestamp:
- Dec 1, 1999, 7:36:47 PM (25 years ago)
- Location:
- trunk/include/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/win/windef.h ¶
r1898 r1923 1 /* $Id: windef.h,v 1.1 7 1999-11-30 20:19:02sandervl Exp $ */1 /* $Id: windef.h,v 1.18 1999-12-01 18:36:47 sandervl Exp $ */ 2 2 3 3 /* … … 185 185 typedef double LONGLONG; 186 186 typedef double ULONGLONG; 187 typedef double ULONGULONG; 187 188 188 189 /* FIXME: Wine does not compile with strict on, therefore strict -
TabularUnified trunk/include/win/winnt.h ¶
r1898 r1923 1085 1085 #ifdef __WIN32OS2__ 1086 1086 typedef union _LARGE_INTEGER { 1087 DWORD LowPart; 1088 LONG HighPart; 1087 struct { 1088 ULONG LowPart; 1089 LONG HighPart; 1090 } u; 1091 ULONGULONG QuadPart; 1089 1092 } LARGE_INTEGER, *LPLARGE_INTEGER, *PLARGE_INTEGER; 1090 1093 1091 typedef union_ULARGE_INTEGER {1094 typedef struct _ULARGE_INTEGER { 1092 1095 DWORD LowPart; 1093 1096 LONG HighPart; -
TabularUnified trunk/include/win/winprocess.h ¶
r1890 r1923 1 /* $Id: winprocess.h,v 1. 5 1999-11-30 19:38:24sandervl Exp $ */1 /* $Id: winprocess.h,v 1.6 1999-12-01 18:36:47 sandervl Exp $ */ 2 2 /* 3 3 * Process definitions … … 100 100 #ifdef __WIN32OS2__ 101 101 DWORD hInstance; //instance handle of executable 102 SYSTEMTIME creationTime; //time of process creation 102 103 #endif 103 104 } PDB;
Note:
See TracChangeset
for help on using the changeset viewer.