Changeset 805
- Timestamp:
 - Sep 2, 1999, 10:57:43 PM (26 years ago)
 - Location:
 - trunk
 - Files:
 - 
      
- 6 edited
 
- 
          
  changelog (modified) (1 diff)
 - 
          
  include/win/windef.h (modified) (2 diffs)
 - 
          
  include/win/wine/obj_control.h (modified) (2 diffs)
 - 
          
  include/win/wtypes.h (modified) (1 diff)
 - 
          
  include/win32type.h (modified) (3 diffs)
 - 
          
  src/kernel32/exceptions.cpp (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/changelog
r788 r805 1 /* $Id: changelog,v 1.16 7 1999-09-02 11:10:18phaller Exp $ */1 /* $Id: changelog,v 1.168 1999-09-02 20:57:43 phaller Exp $ */ 2 2 3 3 99-09-01: Patrick Haller <phaller@gmx.net> 4 - *: Cleanup of include files, some ICOM issues in particular 4 - *: Cleanup of include files, some ICOM issues in particular, 5 also fixes LONGLONG problem (now names LONGLONG_W) 5 6 - SHELL32\NEW: introduction of a straight port of WINE's SHELL32 implementation 7 18 of 22 files are ported already 6 8 7 9 99-09-01: Patrick Haller <phaller@gmx.net>  - 
      
trunk/include/win/windef.h
r780 r805 1 /* $Id: windef.h,v 1. 8 1999-09-01 19:12:14phaller Exp $ */1 /* $Id: windef.h,v 1.9 1999-09-02 20:56:29 phaller Exp $ */ 2 2 3 3 /* … … 183 183 typedef unsigned long ULONG_PTR; 184 184 typedef double DOUBLE; 185 typedef double LONGLONG ;186 typedef double ULONGLONG ;185 typedef double LONGLONG_W; 186 typedef double ULONGLONG_W; 187 187 188 188 /* FIXME: Wine does not compile with strict on, therefore strict  - 
      
trunk/include/win/wine/obj_control.h
r641 r805 1 /* $Id: obj_control.h,v 1. 5 1999-08-22 22:52:07 sandervlExp $ */1 /* $Id: obj_control.h,v 1.6 1999-09-02 20:56:30 phaller Exp $ */ 2 2 /* 3 3 * Defines the COM interfaces and APIs related to structured data storage. … … 45 45 DWORD clSize; 46 46 DWORD rpcReserved; 47 ULONGLONG ahData[1];47 ULONGLONG_W ahData[1]; 48 48 } wireVARIANT_BLOB; 49 49  - 
      
trunk/include/win/wtypes.h
r636 r805 164 164 #endif 165 165 } u; 166 LONGLONG int64;166 LONGLONG_W int64; 167 167 } CY; 168 168 #endif /* _tagCY_DEFINED */  - 
      
trunk/include/win32type.h
r780 r805 1 /* $Id: win32type.h,v 1.1 7 1999-09-01 19:12:13phaller Exp $ */1 /* $Id: win32type.h,v 1.18 1999-09-02 20:56:29 phaller Exp $ */ 2 2 3 3 /* … … 252 252 // doubles 253 253 typedef double DOUBLE; 254 typedef double LONGLONG ;255 typedef double ULONGULONG ;256 typedef double DWORDLONG ;257 typedef ULONGULONG *PULONGULONG;258 typedef DWORDLONG *PDWORDLONG;254 typedef double LONGLONG_W; 255 typedef double ULONGULONG_W; 256 typedef double DWORDLONG_W; 257 typedef ULONGULONG_W *PULONGULONG_W; 258 typedef DWORDLONG_W *PDWORDLONG_W; 259 259 260 260 // boolean … … 418 418 LONG HighPart; 419 419 } u; 420 ULONGULONG QuadPart; 420 //@@@PH this can't really work ... 421 ULONGULONG_W QuadPart; 421 422 } LARGE_INTEGER; 422 423  - 
      
trunk/src/kernel32/exceptions.cpp
r730 r805 1 /* $Id: exceptions.cpp,v 1.1 8 1999-08-28 19:33:44 sandervlExp $ */1 /* $Id: exceptions.cpp,v 1.19 1999-09-02 20:56:48 phaller Exp $ */ 2 2 3 3 /* … … 1007 1007 USHORT sel = GetFS(); 1008 1008 1009 SetExceptionChain(val); 1009 SetExceptionChain(val); 1010 1010 SetFS(sel); 1011 1011 } … … 1032 1032 PWINEXCEPTION_FRAME orgframe; 1033 1033 APIRET rc; 1034 ULONGULONG timerval;1034 ULONGULONG_W timerval; 1035 1035 1036 1036 DisableFPUExceptions();  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  