Commit cecd0313 authored by Максим Карасев's avatar Максим Карасев Committed by Alexandre Julliard

include: Update _SECURITY_INTEGER.

In Windows it works that way.
parent 062cf6e2
...@@ -69,11 +69,16 @@ typedef SecHandle CtxtHandle; ...@@ -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__
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment