1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-01 07:14:31 +00:00

include: Update _SECURITY_INTEGER.

In Windows it works that way.
This commit is contained in:
Maxim Karasev 2023-07-07 18:51:40 +03:00 committed by Alexandre Julliard
parent 062cf6e2f1
commit cecd031308

View File

@ -69,11 +69,16 @@ typedef SecHandle CtxtHandle;
typedef PSecHandle PCtxtHandle; typedef PSecHandle PCtxtHandle;
#endif #endif
#if defined(_NTDEF_) || defined(_WINNT_)
typedef LARGE_INTEGER _SECURITY_INTEGER, SECURITY_INTEGER,*PSECURITY_INTEGER;
#else
typedef struct _SECURITY_INTEGER typedef struct _SECURITY_INTEGER
{ {
ULONG LowPart; ULONG LowPart;
LONG HighPart; LONG HighPart;
} SECURITY_INTEGER, *PSECURITY_INTEGER; } SECURITY_INTEGER, *PSECURITY_INTEGER;
#endif
typedef SECURITY_INTEGER TimeStamp, *PTimeStamp; typedef SECURITY_INTEGER TimeStamp, *PTimeStamp;
#ifndef __UNICODE_STRING_DEFINED__ #ifndef __UNICODE_STRING_DEFINED__