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
e1fcd789
Commit
e1fcd789
authored
Apr 21, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
Apr 26, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Mark internal symbols with hidden visibility.
parent
c2f2f191
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
56 deletions
+56
-56
hmac_md5.h
dlls/secur32/hmac_md5.h
+3
-3
secur32_priv.h
dlls/secur32/secur32_priv.h
+39
-39
thunks.h
dlls/secur32/thunks.h
+14
-14
No files found.
dlls/secur32/hmac_md5.h
View file @
e1fcd789
...
@@ -42,7 +42,7 @@ void WINAPI MD5Init( MD5_CTX *ctx );
...
@@ -42,7 +42,7 @@ void WINAPI MD5Init( MD5_CTX *ctx );
void
WINAPI
MD5Update
(
MD5_CTX
*
ctx
,
const
unsigned
char
*
buf
,
unsigned
int
len
);
void
WINAPI
MD5Update
(
MD5_CTX
*
ctx
,
const
unsigned
char
*
buf
,
unsigned
int
len
);
void
WINAPI
MD5Final
(
MD5_CTX
*
ctx
);
void
WINAPI
MD5Final
(
MD5_CTX
*
ctx
);
void
HMACMD5Init
(
HMAC_MD5_CTX
*
ctx
,
const
unsigned
char
*
key
,
unsigned
int
key_len
);
void
HMACMD5Init
(
HMAC_MD5_CTX
*
ctx
,
const
unsigned
char
*
key
,
unsigned
int
key_len
)
DECLSPEC_HIDDEN
;
void
HMACMD5Update
(
HMAC_MD5_CTX
*
ctx
,
const
unsigned
char
*
data
,
unsigned
int
data_len
);
void
HMACMD5Update
(
HMAC_MD5_CTX
*
ctx
,
const
unsigned
char
*
data
,
unsigned
int
data_len
)
DECLSPEC_HIDDEN
;
void
HMACMD5Final
(
HMAC_MD5_CTX
*
ctx
,
unsigned
char
*
digest
);
void
HMACMD5Final
(
HMAC_MD5_CTX
*
ctx
,
unsigned
char
*
digest
)
DECLSPEC_HIDDEN
;
#endif
/*_HMAC_MD5_H_*/
#endif
/*_HMAC_MD5_H_*/
dlls/secur32/secur32_priv.h
View file @
e1fcd789
...
@@ -97,63 +97,63 @@ typedef enum _sign_direction {
...
@@ -97,63 +97,63 @@ typedef enum _sign_direction {
* Returns a pointer to the stored provider entry, for use adding packages.
* Returns a pointer to the stored provider entry, for use adding packages.
*/
*/
SecureProvider
*
SECUR32_addProvider
(
const
SecurityFunctionTableA
*
fnTableA
,
SecureProvider
*
SECUR32_addProvider
(
const
SecurityFunctionTableA
*
fnTableA
,
const
SecurityFunctionTableW
*
fnTableW
,
PCWSTR
moduleName
);
const
SecurityFunctionTableW
*
fnTableW
,
PCWSTR
moduleName
)
DECLSPEC_HIDDEN
;
/* Allocates space for and adds toAdd packages with the given provider.
/* Allocates space for and adds toAdd packages with the given provider.
* provider must not be NULL, and either infoA or infoW may be NULL, but not
* provider must not be NULL, and either infoA or infoW may be NULL, but not
* both.
* both.
*/
*/
void
SECUR32_addPackages
(
SecureProvider
*
provider
,
ULONG
toAdd
,
void
SECUR32_addPackages
(
SecureProvider
*
provider
,
ULONG
toAdd
,
const
SecPkgInfoA
*
infoA
,
const
SecPkgInfoW
*
infoW
);
const
SecPkgInfoA
*
infoA
,
const
SecPkgInfoW
*
infoW
)
DECLSPEC_HIDDEN
;
/* Tries to find the package named packageName. If it finds it, implicitly
/* Tries to find the package named packageName. If it finds it, implicitly
* loads the package if it isn't already loaded.
* loads the package if it isn't already loaded.
*/
*/
SecurePackage
*
SECUR32_findPackageW
(
PCWSTR
packageName
);
SecurePackage
*
SECUR32_findPackageW
(
PCWSTR
packageName
)
DECLSPEC_HIDDEN
;
/* Tries to find the package named packageName. (Thunks to _findPackageW)
/* Tries to find the package named packageName. (Thunks to _findPackageW)
*/
*/
SecurePackage
*
SECUR32_findPackageA
(
PCSTR
packageName
);
SecurePackage
*
SECUR32_findPackageA
(
PCSTR
packageName
)
DECLSPEC_HIDDEN
;
/* A few string helpers; will return NULL if str is NULL. Free return with
/* A few string helpers; will return NULL if str is NULL. Free return with
* HeapFree */
* HeapFree */
PWSTR
SECUR32_AllocWideFromMultiByte
(
PCSTR
str
);
PWSTR
SECUR32_AllocWideFromMultiByte
(
PCSTR
str
)
DECLSPEC_HIDDEN
;
PSTR
SECUR32_AllocMultiByteFromWide
(
PCWSTR
str
);
PSTR
SECUR32_AllocMultiByteFromWide
(
PCWSTR
str
)
DECLSPEC_HIDDEN
;
/* Initialization functions for built-in providers */
/* Initialization functions for built-in providers */
void
SECUR32_initSchannelSP
(
void
);
void
SECUR32_initSchannelSP
(
void
)
DECLSPEC_HIDDEN
;
void
SECUR32_initNegotiateSP
(
void
);
void
SECUR32_initNegotiateSP
(
void
)
DECLSPEC_HIDDEN
;
void
SECUR32_initNTLMSP
(
void
);
void
SECUR32_initNTLMSP
(
void
)
DECLSPEC_HIDDEN
;
/* Cleanup functions for built-in providers */
/* Cleanup functions for built-in providers */
void
SECUR32_deinitSchannelSP
(
void
);
void
SECUR32_deinitSchannelSP
(
void
)
DECLSPEC_HIDDEN
;
/* Functions from dispatcher.c used elsewhere in the code */
/* Functions from dispatcher.c used elsewhere in the code */
SECURITY_STATUS
fork_helper
(
PNegoHelper
*
new_helper
,
const
char
*
prog
,
SECURITY_STATUS
fork_helper
(
PNegoHelper
*
new_helper
,
const
char
*
prog
,
char
*
const
argv
[]);
char
*
const
argv
[])
DECLSPEC_HIDDEN
;
SECURITY_STATUS
run_helper
(
PNegoHelper
helper
,
char
*
buffer
,
SECURITY_STATUS
run_helper
(
PNegoHelper
helper
,
char
*
buffer
,
unsigned
int
max_buflen
,
int
*
buflen
);
unsigned
int
max_buflen
,
int
*
buflen
)
DECLSPEC_HIDDEN
;
void
cleanup_helper
(
PNegoHelper
helper
);
void
cleanup_helper
(
PNegoHelper
helper
)
DECLSPEC_HIDDEN
;
void
check_version
(
PNegoHelper
helper
);
void
check_version
(
PNegoHelper
helper
)
DECLSPEC_HIDDEN
;
/* Functions from base64_codec.c used elsewhere */
/* Functions from base64_codec.c used elsewhere */
SECURITY_STATUS
encodeBase64
(
PBYTE
in_buf
,
int
in_len
,
char
*
out_buf
,
SECURITY_STATUS
encodeBase64
(
PBYTE
in_buf
,
int
in_len
,
char
*
out_buf
,
int
max_len
,
int
*
out_len
);
int
max_len
,
int
*
out_len
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
decodeBase64
(
char
*
in_buf
,
int
in_len
,
BYTE
*
out_buf
,
SECURITY_STATUS
decodeBase64
(
char
*
in_buf
,
int
in_len
,
BYTE
*
out_buf
,
int
max_len
,
int
*
out_len
);
int
max_len
,
int
*
out_len
)
DECLSPEC_HIDDEN
;
/* Functions from util.c */
/* Functions from util.c */
ULONG
ComputeCrc32
(
const
BYTE
*
pData
,
INT
iLen
,
ULONG
initial_crc
);
ULONG
ComputeCrc32
(
const
BYTE
*
pData
,
INT
iLen
,
ULONG
initial_crc
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SECUR32_CreateNTLM1SessionKey
(
PBYTE
password
,
int
len
,
PBYTE
session_key
);
SECURITY_STATUS
SECUR32_CreateNTLM1SessionKey
(
PBYTE
password
,
int
len
,
PBYTE
session_key
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SECUR32_CreateNTLM2SubKeys
(
PNegoHelper
helper
);
SECURITY_STATUS
SECUR32_CreateNTLM2SubKeys
(
PNegoHelper
helper
)
DECLSPEC_HIDDEN
;
arc4_info
*
SECUR32_arc4Alloc
(
void
);
arc4_info
*
SECUR32_arc4Alloc
(
void
)
DECLSPEC_HIDDEN
;
void
SECUR32_arc4Init
(
arc4_info
*
a4i
,
const
BYTE
*
key
,
unsigned
int
keyLen
);
void
SECUR32_arc4Init
(
arc4_info
*
a4i
,
const
BYTE
*
key
,
unsigned
int
keyLen
)
DECLSPEC_HIDDEN
;
void
SECUR32_arc4Process
(
arc4_info
*
a4i
,
BYTE
*
inoutString
,
unsigned
int
length
);
void
SECUR32_arc4Process
(
arc4_info
*
a4i
,
BYTE
*
inoutString
,
unsigned
int
length
)
DECLSPEC_HIDDEN
;
void
SECUR32_arc4Cleanup
(
arc4_info
*
a4i
);
void
SECUR32_arc4Cleanup
(
arc4_info
*
a4i
)
DECLSPEC_HIDDEN
;
/* NTLMSSP flags indicating the negotiated features */
/* NTLMSSP flags indicating the negotiated features */
#define NTLMSSP_NEGOTIATE_UNICODE 0x00000001
#define NTLMSSP_NEGOTIATE_UNICODE 0x00000001
...
@@ -183,31 +183,31 @@ typedef struct schan_imp_certificate_credentials_opaque *schan_imp_certificate_c
...
@@ -183,31 +183,31 @@ typedef struct schan_imp_certificate_credentials_opaque *schan_imp_certificate_c
struct
schan_transport
;
struct
schan_transport
;
extern
int
schan_pull
(
struct
schan_transport
*
t
,
void
*
buff
,
size_t
*
buff_len
);
extern
int
schan_pull
(
struct
schan_transport
*
t
,
void
*
buff
,
size_t
*
buff_len
)
DECLSPEC_HIDDEN
;
extern
int
schan_push
(
struct
schan_transport
*
t
,
const
void
*
buff
,
size_t
*
buff_len
);
extern
int
schan_push
(
struct
schan_transport
*
t
,
const
void
*
buff
,
size_t
*
buff_len
)
DECLSPEC_HIDDEN
;
extern
schan_imp_session
schan_session_for_transport
(
struct
schan_transport
*
t
);
extern
schan_imp_session
schan_session_for_transport
(
struct
schan_transport
*
t
)
DECLSPEC_HIDDEN
;
/* schannel implementation interface */
/* schannel implementation interface */
extern
BOOL
schan_imp_create_session
(
schan_imp_session
*
session
,
BOOL
is_server
,
extern
BOOL
schan_imp_create_session
(
schan_imp_session
*
session
,
BOOL
is_server
,
schan_imp_certificate_credentials
cred
);
schan_imp_certificate_credentials
cred
)
DECLSPEC_HIDDEN
;
extern
void
schan_imp_dispose_session
(
schan_imp_session
session
);
extern
void
schan_imp_dispose_session
(
schan_imp_session
session
)
DECLSPEC_HIDDEN
;
extern
void
schan_imp_set_session_transport
(
schan_imp_session
session
,
extern
void
schan_imp_set_session_transport
(
schan_imp_session
session
,
struct
schan_transport
*
t
);
struct
schan_transport
*
t
)
DECLSPEC_HIDDEN
;
extern
SECURITY_STATUS
schan_imp_handshake
(
schan_imp_session
session
);
extern
SECURITY_STATUS
schan_imp_handshake
(
schan_imp_session
session
)
DECLSPEC_HIDDEN
;
extern
unsigned
int
schan_imp_get_session_cipher_block_size
(
schan_imp_session
session
);
extern
unsigned
int
schan_imp_get_session_cipher_block_size
(
schan_imp_session
session
)
DECLSPEC_HIDDEN
;
extern
SECURITY_STATUS
schan_imp_get_connection_info
(
schan_imp_session
session
,
extern
SECURITY_STATUS
schan_imp_get_connection_info
(
schan_imp_session
session
,
SecPkgContext_ConnectionInfo
*
info
);
SecPkgContext_ConnectionInfo
*
info
)
DECLSPEC_HIDDEN
;
extern
SECURITY_STATUS
schan_imp_get_session_peer_certificate
(
schan_imp_session
session
,
extern
SECURITY_STATUS
schan_imp_get_session_peer_certificate
(
schan_imp_session
session
,
PCCERT_CONTEXT
*
cert
);
PCCERT_CONTEXT
*
cert
)
DECLSPEC_HIDDEN
;
extern
SECURITY_STATUS
schan_imp_send
(
schan_imp_session
session
,
const
void
*
buffer
,
extern
SECURITY_STATUS
schan_imp_send
(
schan_imp_session
session
,
const
void
*
buffer
,
size_t
*
length
);
size_t
*
length
)
DECLSPEC_HIDDEN
;
extern
SECURITY_STATUS
schan_imp_recv
(
schan_imp_session
session
,
void
*
buffer
,
extern
SECURITY_STATUS
schan_imp_recv
(
schan_imp_session
session
,
void
*
buffer
,
size_t
*
length
);
size_t
*
length
)
DECLSPEC_HIDDEN
;
extern
BOOL
schan_imp_allocate_certificate_credentials
(
schan_imp_certificate_credentials
*
c
);
extern
BOOL
schan_imp_allocate_certificate_credentials
(
schan_imp_certificate_credentials
*
c
)
DECLSPEC_HIDDEN
;
extern
void
schan_imp_free_certificate_credentials
(
schan_imp_certificate_credentials
c
);
extern
void
schan_imp_free_certificate_credentials
(
schan_imp_certificate_credentials
c
)
DECLSPEC_HIDDEN
;
extern
BOOL
schan_imp_init
(
void
);
extern
BOOL
schan_imp_init
(
void
)
DECLSPEC_HIDDEN
;
extern
void
schan_imp_deinit
(
void
);
extern
void
schan_imp_deinit
(
void
)
DECLSPEC_HIDDEN
;
#endif
/* ndef __SECUR32_PRIV_H__ */
#endif
/* ndef __SECUR32_PRIV_H__ */
dlls/secur32/thunks.h
View file @
e1fcd789
...
@@ -27,48 +27,48 @@
...
@@ -27,48 +27,48 @@
SECURITY_STATUS
SEC_ENTRY
thunk_AcquireCredentialsHandleA
(
SECURITY_STATUS
SEC_ENTRY
thunk_AcquireCredentialsHandleA
(
SEC_CHAR
*
pszPrincipal
,
SEC_CHAR
*
pszPackage
,
ULONG
fCredentialsUse
,
SEC_CHAR
*
pszPrincipal
,
SEC_CHAR
*
pszPackage
,
ULONG
fCredentialsUse
,
PLUID
pvLogonID
,
PVOID
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
PLUID
pvLogonID
,
PVOID
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
PVOID
pvGetKeyArgument
,
PCredHandle
phCredential
,
PTimeStamp
ptsExpiry
);
PVOID
pvGetKeyArgument
,
PCredHandle
phCredential
,
PTimeStamp
ptsExpiry
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_AcquireCredentialsHandleW
(
SECURITY_STATUS
SEC_ENTRY
thunk_AcquireCredentialsHandleW
(
SEC_WCHAR
*
pszPrincipal
,
SEC_WCHAR
*
pszPackage
,
ULONG
fCredentialsUse
,
SEC_WCHAR
*
pszPrincipal
,
SEC_WCHAR
*
pszPackage
,
ULONG
fCredentialsUse
,
PLUID
pvLogonID
,
PVOID
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
PLUID
pvLogonID
,
PVOID
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
PVOID
pvGetKeyArgument
,
PCredHandle
phCredential
,
PTimeStamp
ptsExpiry
);
PVOID
pvGetKeyArgument
,
PCredHandle
phCredential
,
PTimeStamp
ptsExpiry
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_InitializeSecurityContextA
(
SECURITY_STATUS
SEC_ENTRY
thunk_InitializeSecurityContextA
(
PCredHandle
phCredential
,
PCtxtHandle
phContext
,
PCredHandle
phCredential
,
PCtxtHandle
phContext
,
SEC_CHAR
*
pszTargetName
,
ULONG
fContextReq
,
SEC_CHAR
*
pszTargetName
,
ULONG
fContextReq
,
ULONG
Reserved1
,
ULONG
TargetDataRep
,
PSecBufferDesc
pInput
,
ULONG
Reserved1
,
ULONG
TargetDataRep
,
PSecBufferDesc
pInput
,
ULONG
Reserved2
,
PCtxtHandle
phNewContext
,
PSecBufferDesc
pOutput
,
ULONG
Reserved2
,
PCtxtHandle
phNewContext
,
PSecBufferDesc
pOutput
,
ULONG
*
pfContextAttr
,
PTimeStamp
ptsExpiry
);
ULONG
*
pfContextAttr
,
PTimeStamp
ptsExpiry
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_InitializeSecurityContextW
(
SECURITY_STATUS
SEC_ENTRY
thunk_InitializeSecurityContextW
(
PCredHandle
phCredential
,
PCtxtHandle
phContext
,
PCredHandle
phCredential
,
PCtxtHandle
phContext
,
SEC_WCHAR
*
pszTargetName
,
ULONG
fContextReq
,
SEC_WCHAR
*
pszTargetName
,
ULONG
fContextReq
,
ULONG
Reserved1
,
ULONG
TargetDataRep
,
PSecBufferDesc
pInput
,
ULONG
Reserved1
,
ULONG
TargetDataRep
,
PSecBufferDesc
pInput
,
ULONG
Reserved2
,
PCtxtHandle
phNewContext
,
PSecBufferDesc
pOutput
,
ULONG
Reserved2
,
PCtxtHandle
phNewContext
,
PSecBufferDesc
pOutput
,
ULONG
*
pfContextAttr
,
PTimeStamp
ptsExpiry
);
ULONG
*
pfContextAttr
,
PTimeStamp
ptsExpiry
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_ImportSecurityContextA
(
SECURITY_STATUS
SEC_ENTRY
thunk_ImportSecurityContextA
(
SEC_CHAR
*
pszPackage
,
PSecBuffer
pPackedContext
,
void
*
Token
,
SEC_CHAR
*
pszPackage
,
PSecBuffer
pPackedContext
,
void
*
Token
,
PCtxtHandle
phContext
);
PCtxtHandle
phContext
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_ImportSecurityContextW
(
SECURITY_STATUS
SEC_ENTRY
thunk_ImportSecurityContextW
(
SEC_WCHAR
*
pszPackage
,
PSecBuffer
pPackedContext
,
void
*
Token
,
SEC_WCHAR
*
pszPackage
,
PSecBuffer
pPackedContext
,
void
*
Token
,
PCtxtHandle
phContext
);
PCtxtHandle
phContext
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_AddCredentialsA
(
PCredHandle
hCredentials
,
SECURITY_STATUS
SEC_ENTRY
thunk_AddCredentialsA
(
PCredHandle
hCredentials
,
SEC_CHAR
*
pszPrincipal
,
SEC_CHAR
*
pszPackage
,
ULONG
fCredentialUse
,
SEC_CHAR
*
pszPrincipal
,
SEC_CHAR
*
pszPackage
,
ULONG
fCredentialUse
,
void
*
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
void
*
pvGetKeyArgument
,
void
*
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
void
*
pvGetKeyArgument
,
PTimeStamp
ptsExpiry
);
PTimeStamp
ptsExpiry
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_AddCredentialsW
(
PCredHandle
hCredentials
,
SECURITY_STATUS
SEC_ENTRY
thunk_AddCredentialsW
(
PCredHandle
hCredentials
,
SEC_WCHAR
*
pszPrincipal
,
SEC_WCHAR
*
pszPackage
,
ULONG
fCredentialUse
,
SEC_WCHAR
*
pszPrincipal
,
SEC_WCHAR
*
pszPackage
,
ULONG
fCredentialUse
,
void
*
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
void
*
pvGetKeyArgument
,
void
*
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
void
*
pvGetKeyArgument
,
PTimeStamp
ptsExpiry
);
PTimeStamp
ptsExpiry
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_QueryCredentialsAttributesA
(
SECURITY_STATUS
SEC_ENTRY
thunk_QueryCredentialsAttributesA
(
PCredHandle
phCredential
,
ULONG
ulAttribute
,
void
*
pBuffer
);
PCredHandle
phCredential
,
ULONG
ulAttribute
,
void
*
pBuffer
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_QueryCredentialsAttributesW
(
SECURITY_STATUS
SEC_ENTRY
thunk_QueryCredentialsAttributesW
(
PCredHandle
phCredential
,
ULONG
ulAttribute
,
void
*
pBuffer
);
PCredHandle
phCredential
,
ULONG
ulAttribute
,
void
*
pBuffer
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_QueryContextAttributesA
(
SECURITY_STATUS
SEC_ENTRY
thunk_QueryContextAttributesA
(
PCtxtHandle
phContext
,
ULONG
ulAttribute
,
void
*
pBuffer
);
PCtxtHandle
phContext
,
ULONG
ulAttribute
,
void
*
pBuffer
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_QueryContextAttributesW
(
SECURITY_STATUS
SEC_ENTRY
thunk_QueryContextAttributesW
(
PCtxtHandle
phContext
,
ULONG
ulAttribute
,
void
*
pBuffer
);
PCtxtHandle
phContext
,
ULONG
ulAttribute
,
void
*
pBuffer
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_SetContextAttributesA
(
PCtxtHandle
phContext
,
SECURITY_STATUS
SEC_ENTRY
thunk_SetContextAttributesA
(
PCtxtHandle
phContext
,
ULONG
ulAttribute
,
void
*
pBuffer
,
ULONG
cbBuffer
);
ULONG
ulAttribute
,
void
*
pBuffer
,
ULONG
cbBuffer
)
DECLSPEC_HIDDEN
;
SECURITY_STATUS
SEC_ENTRY
thunk_SetContextAttributesW
(
PCtxtHandle
phContext
,
SECURITY_STATUS
SEC_ENTRY
thunk_SetContextAttributesW
(
PCtxtHandle
phContext
,
ULONG
ulAttribute
,
void
*
pBuffer
,
ULONG
cbBuffer
);
ULONG
ulAttribute
,
void
*
pBuffer
,
ULONG
cbBuffer
)
DECLSPEC_HIDDEN
;
#endif
/* ndef __SECUR32_THUNKS_H__ */
#endif
/* ndef __SECUR32_THUNKS_H__ */
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