credui: Make wincred.h C++ compatible.

oldstable
Francois Gouget 2007-02-07 16:23:23 +01:00 committed by Alexandre Julliard
parent 99df8e8db4
commit 78c874f982
1 changed files with 8 additions and 0 deletions

View File

@ -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_ */