Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
5fb24924
Commit
5fb24924
authored
Jun 19, 2006
by
Thomas Weidenmueller
Committed by
Alexandre Julliard
Jun 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix definition of SECURITY_INTEGER.
parent
d489a0a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
schannel.c
dlls/secur32/schannel.c
+4
-1
sspi.h
include/sspi.h
+5
-1
No files found.
dlls/secur32/schannel.c
View file @
5fb24924
...
@@ -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
;
...
...
include/sspi.h
View file @
5fb24924
...
@@ -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
...
...
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