Changeset 805 for trunk/include


Ignore:
Timestamp:
Sep 2, 1999, 10:57:43 PM (26 years ago)
Author:
phaller
Message:

Fix: LONGLONG header problem

Location:
trunk/include
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/windef.h

    r780 r805  
    1 /* $Id: windef.h,v 1.8 1999-09-01 19:12:14 phaller Exp $ */
     1/* $Id: windef.h,v 1.9 1999-09-02 20:56:29 phaller Exp $ */
    22
    33/*
     
    183183typedef unsigned long   ULONG_PTR;
    184184typedef double          DOUBLE;
    185 typedef double          LONGLONG;
    186 typedef double          ULONGLONG;
     185typedef double          LONGLONG_W;
     186typedef double          ULONGLONG_W;
    187187
    188188/* 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 sandervl Exp $ */
     1/* $Id: obj_control.h,v 1.6 1999-09-02 20:56:30 phaller Exp $ */
    22/*
    33 * Defines the COM interfaces and APIs related to structured data storage.
     
    4545        DWORD clSize;
    4646        DWORD rpcReserved;
    47         ULONGLONG ahData[1];
     47        ULONGLONG_W ahData[1];
    4848} wireVARIANT_BLOB;
    4949
  • trunk/include/win/wtypes.h

    r636 r805  
    164164#endif
    165165    } u;
    166     LONGLONG int64;
     166    LONGLONG_W int64;
    167167} CY;
    168168#endif /* _tagCY_DEFINED */
  • trunk/include/win32type.h

    r780 r805  
    1 /* $Id: win32type.h,v 1.17 1999-09-01 19:12:13 phaller Exp $ */
     1/* $Id: win32type.h,v 1.18 1999-09-02 20:56:29 phaller Exp $ */
    22
    33/*
     
    252252// doubles
    253253typedef double          DOUBLE;
    254 typedef double          LONGLONG;
    255 typedef double          ULONGULONG;
    256 typedef double          DWORDLONG;
    257 typedef ULONGULONG      *PULONGULONG;
    258 typedef DWORDLONG       *PDWORDLONG;
     254typedef double          LONGLONG_W;
     255typedef double          ULONGULONG_W;
     256typedef double          DWORDLONG_W;
     257typedef ULONGULONG_W    *PULONGULONG_W;
     258typedef DWORDLONG_W     *PDWORDLONG_W;
    259259
    260260// boolean
     
    418418        LONG HighPart;
    419419    } u;
    420     ULONGULONG QuadPart;
     420    //@@@PH this can't really work ...
     421    ULONGULONG_W QuadPart;
    421422} LARGE_INTEGER;
    422423
Note: See TracChangeset for help on using the changeset viewer.