mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
include: Fix definition of SECURITY_INTEGER.
This commit is contained in:
parent
d489a0a312
commit
5fb24924fb
@ -126,7 +126,10 @@ static SECURITY_STATUS schan_AcquireCredentialsHandle(ULONG fCredentialUse,
|
||||
phCredential->dwUpper = fCredentialUse;
|
||||
/* According to MSDN, all versions prior to XP do this */
|
||||
if (ptsExpiry)
|
||||
ptsExpiry->QuadPart = 0;
|
||||
{
|
||||
ptsExpiry->LowPart = 0;
|
||||
ptsExpiry->HighPart = 0;
|
||||
}
|
||||
ret = SEC_E_OK;
|
||||
}
|
||||
return ret;
|
||||
|
@ -66,7 +66,11 @@ typedef PSecHandle PCredHandle;
|
||||
typedef SecHandle CtxtHandle;
|
||||
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 struct _SecPkgInfoA
|
||||
|
Loading…
Reference in New Issue
Block a user