include: Fix definition of SECURITY_INTEGER.

This commit is contained in:
Thomas Weidenmueller 2006-06-19 12:09:56 +02:00 committed by Alexandre Julliard
parent d489a0a312
commit 5fb24924fb
2 changed files with 9 additions and 2 deletions

View file

@ -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;

View file

@ -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