Changeset 1923


Ignore:
Timestamp:
Dec 1, 1999, 7:36:47 PM (25 years ago)
Author:
sandervl
Message:

header updates + fixes

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.17 1999-11-30 20:19:02 sandervl Exp $ */
     1/* $Id: windef.h,v 1.18 1999-12-01 18:36:47 sandervl Exp $ */
    22
    33/*
     
    185185typedef double          LONGLONG;
    186186typedef double          ULONGLONG;
     187typedef double          ULONGULONG;
    187188
    188189/* FIXME: Wine does not compile with strict on, therefore strict
  • TabularUnified trunk/include/win/winnt.h

    r1898 r1923  
    10851085#ifdef __WIN32OS2__
    10861086typedef union _LARGE_INTEGER {
    1087         DWORD    LowPart;
    1088         LONG     HighPart;
     1087        struct {
     1088                ULONG LowPart;
     1089                LONG HighPart;
     1090        } u;
     1091        ULONGULONG QuadPart;
    10891092} LARGE_INTEGER, *LPLARGE_INTEGER, *PLARGE_INTEGER;
    10901093
    1091 typedef union _ULARGE_INTEGER {
     1094typedef struct _ULARGE_INTEGER {
    10921095        DWORD    LowPart;
    10931096        LONG     HighPart;
  • TabularUnified trunk/include/win/winprocess.h

    r1890 r1923  
    1 /* $Id: winprocess.h,v 1.5 1999-11-30 19:38:24 sandervl Exp $ */
     1/* $Id: winprocess.h,v 1.6 1999-12-01 18:36:47 sandervl Exp $ */
    22/*
    33 * Process definitions
     
    100100#ifdef __WIN32OS2__
    101101    DWORD           hInstance;         //instance handle of executable
     102    SYSTEMTIME      creationTime;      //time of process creation
    102103#endif
    103104} PDB;
Note: See TracChangeset for help on using the changeset viewer.