Commit 5fb24924 authored by Thomas Weidenmueller's avatar Thomas Weidenmueller Committed by Alexandre Julliard

include: Fix definition of SECURITY_INTEGER.

parent d489a0a3
...@@ -126,7 +126,10 @@ static SECURITY_STATUS schan_AcquireCredentialsHandle(ULONG fCredentialUse, ...@@ -126,7 +126,10 @@ static SECURITY_STATUS schan_AcquireCredentialsHandle(ULONG fCredentialUse,
phCredential->dwUpper = fCredentialUse; phCredential->dwUpper = fCredentialUse;
/* According to MSDN, all versions prior to XP do this */ /* According to MSDN, all versions prior to XP do this */
if (ptsExpiry) if (ptsExpiry)
ptsExpiry->QuadPart = 0; {
ptsExpiry->LowPart = 0;
ptsExpiry->HighPart = 0;
}
ret = SEC_E_OK; ret = SEC_E_OK;
} }
return ret; return ret;
......
...@@ -66,7 +66,11 @@ typedef PSecHandle PCredHandle; ...@@ -66,7 +66,11 @@ typedef PSecHandle PCredHandle;
typedef SecHandle CtxtHandle; typedef SecHandle CtxtHandle;
typedef PSecHandle PCtxtHandle; typedef PSecHandle PCtxtHandle;
typedef LARGE_INTEGER SECURITY_INTEGER, *PSECURITY_INTEGER; typedef struct _SECURITY_INTEGER
{
unsigned long LowPart;
long HighPart;
} SECURITY_INTEGER, *PSECURITY_INTEGER;
typedef SECURITY_INTEGER TimeStamp, *PTimeStamp; typedef SECURITY_INTEGER TimeStamp, *PTimeStamp;
typedef struct _SecPkgInfoA typedef struct _SecPkgInfoA
......
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