credui: Make wincred.h C++ compatible.
This commit is contained in:
parent
99df8e8db4
commit
78c874f982
|
@ -19,6 +19,10 @@
|
|||
#ifndef _WINCRED_H_
|
||||
#define _WINCRED_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef __SECHANDLE_DEFINED__
|
||||
#define __SECHANDLE_DEFINED__
|
||||
typedef struct _SecHandle
|
||||
|
@ -100,4 +104,8 @@ DWORD WINAPI CredUIStoreSSOCredW(PCWSTR,PCWSTR,PCWSTR,BOOL);
|
|||
DWORD WINAPI CredUIReadSSOCredW(PCWSTR,PWSTR*);
|
||||
/* Note: no CredUIReadSSOCredA in PSDK header */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _WINCRED_H_ */
|
||||
|
|
Loading…
Reference in New Issue