Menu

#88 [U]LARGE_INTEGER fix in winnt.h

closed-fixed
nobody
w32api (251)
2001-08-28
2001-08-26
Eric Kohl
No

Allow anonymous (Xxx.LowPart) or non-anonymous
(Xxx.u.LowPart) access to HighPart and LowPart of a
LARGE_INTEGER or ULARGE_INTEGER.

Discussion

  • Eric Kohl

    Eric Kohl - 2001-08-26
     
  • Danny Smith

    Danny Smith - 2001-08-27

    Logged In: YES
    user_id=11494

    Shouldn't
    +#ifdef _ANONYMOUS_STRUCT
    be
    #if _ANONYMOUS_STRUCT

    In current version of windows.h, _ANONYMOUS_STRUCT is
    always defined. It has value of __extension__ if recent
    __GNUC__, else is an empty string.

    Danny

     
  • Eric Kohl

    Eric Kohl - 2001-08-28

    Logged In: YES
    user_id=306132

    Yes, that's right.
    Using
    #if _ANONYMOUS_STRUCT
    is a lot better. ;-)

     
  • Danny Smith

    Danny Smith - 2001-08-28

    Logged In: YES
    user_id=11494

    Committed to SF CVS.

     
  • Danny Smith

    Danny Smith - 2001-08-28
    • status: open --> closed-fixed