Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
230fb06d
Commit
230fb06d
authored
Jan 06, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 06, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Change the rest of sspi.h to use LONG/ULONG for Win64 compatibility.
parent
57ab0cd9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
schannel.c
dlls/secur32/tests/schannel.c
+1
-1
sspi.h
include/sspi.h
+13
-13
No files found.
dlls/secur32/tests/schannel.c
View file @
230fb06d
...
...
@@ -249,7 +249,7 @@ static void testAcquireSecurityContext(void)
NULL
,
NULL
,
NULL
,
NULL
,
&
cred
,
&
exp
);
ok
(
st
==
SEC_E_OK
,
"AcquireCredentialsHandleA failed: %08x
\n
"
,
st
);
/* expriy is indeterminate in win2k3 */
trace
(
"expiry: %08
lx%08l
x
\n
"
,
exp
.
HighPart
,
exp
.
LowPart
);
trace
(
"expiry: %08
x%08
x
\n
"
,
exp
.
HighPart
,
exp
.
LowPart
);
pFreeCredentialsHandle
(
&
cred
);
/* Bad version in SCHANNEL_CRED */
...
...
include/sspi.h
View file @
230fb06d
...
...
@@ -71,8 +71,8 @@ typedef PSecHandle PCtxtHandle;
typedef
struct
_SECURITY_INTEGER
{
unsigned
long
LowPart
;
long
HighPart
;
ULONG
LowPart
;
LONG
HighPart
;
}
SECURITY_INTEGER
,
*
PSECURITY_INTEGER
;
typedef
SECURITY_INTEGER
TimeStamp
,
*
PTimeStamp
;
...
...
@@ -171,7 +171,7 @@ typedef struct _SecBufferDesc
#define SECBUFFER_VERSION 0
typedef
void
(
SEC_ENTRY
*
SEC_GET_KEY_FN
)(
void
*
Arg
,
void
*
Principal
,
unsigned
long
KeyVer
,
void
**
Key
,
SECURITY_STATUS
*
Status
);
ULONG
KeyVer
,
void
**
Key
,
SECURITY_STATUS
*
Status
);
SECURITY_STATUS
SEC_ENTRY
EnumerateSecurityPackagesA
(
PULONG
pcPackages
,
PSecPkgInfoA
*
ppPackageInfo
);
...
...
@@ -532,7 +532,7 @@ typedef struct _SecPkgContext_PasswordExpiry
typedef
struct
_SecPkgContext_SessionKey
{
unsigned
long
SessionKeyLength
;
ULONG
SessionKeyLength
;
unsigned
char
*
SessionKey
;
}
SecPkgContext_SessionKey
,
*
PSecPkgContext_SessionKey
;
...
...
@@ -551,24 +551,24 @@ typedef struct _SecPkgContext_PackageInfoW
typedef
struct
_SecPkgContext_Flags
{
unsigned
long
Flags
;
ULONG
Flags
;
}
SecPkgContext_Flags
,
*
PSecPkgContext_Flags
;
typedef
struct
_SecPkgContext_UserFlags
{
unsigned
long
UserFlags
;
ULONG
UserFlags
;
}
SecPkgContext_UserFlags
,
*
PSecPkgContext_UserFlags
;
typedef
struct
_SecPkgContext_NegotiationInfoA
{
PSecPkgInfoA
PackageInfo
;
unsigned
long
NegotiationState
;
ULONG
NegotiationState
;
}
SecPkgContext_NegotiationInfoA
,
*
PSecPkgContext_NegotiationInfoA
;
typedef
struct
_SecPkgContext_NegotiationInfoW
{
PSecPkgInfoW
PackageInfo
;
unsigned
long
NegotiationState
;
ULONG
NegotiationState
;
}
SecPkgContext_NegotiationInfoW
,
*
PSecPkgContext_NegotiationInfoW
;
#define SecPkgContext_NegotiationInfo WINELIB_NAME_AW(SecPkgContext_NegotiationInfo)
...
...
@@ -598,13 +598,13 @@ typedef struct _SecPkgContext_NativeNamesW
typedef
struct
_SecPkgContext_CredentialNameA
{
unsigned
long
CredentialType
;
ULONG
CredentialType
;
SEC_CHAR
*
sCredentialName
;
}
SecPkgContext_CredentialNameA
,
*
PSecPkgContext_CredentialNameA
;
typedef
struct
_SecPkgContext_CredentialNameW
{
unsigned
long
CredentialType
;
ULONG
CredentialType
;
SEC_WCHAR
*
sCredentialName
;
}
SecPkgContext_CredentialNameW
,
*
PSecPkgContext_CredentialNameW
;
...
...
@@ -618,19 +618,19 @@ typedef struct _SecPkgContext_AccessToken
typedef
struct
_SecPkgContext_TargetInformation
{
unsigned
long
MarshalledTargetInfoLength
;
ULONG
MarshalledTargetInfoLength
;
unsigned
char
*
MarshalledTargetInfo
;
}
SecPkgContext_TargetInformation
,
*
PSecPkgContext_TargetInformation
;
typedef
struct
_SecPkgContext_AuthzID
{
unsigned
long
AuthzIDLength
;
ULONG
AuthzIDLength
;
char
*
AuthzID
;
}
SecPkgContext_AuthzID
,
*
PSecPkgContext_AuthzID
;
typedef
struct
_SecPkgContext_Target
{
unsigned
long
TargetLength
;
ULONG
TargetLength
;
char
*
Target
;
}
SecPkgContext_Target
,
*
PSecPkgContext_Target
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment