include: Take care to not declare CtxtHandle and PCtxtHandle more than once when including both sspi.h and wincred.h.
This commit is contained in:
parent
6b21304248
commit
d1696ff5fe
|
@ -63,8 +63,11 @@ typedef struct _SecHandle
|
|||
typedef SecHandle CredHandle;
|
||||
typedef PSecHandle PCredHandle;
|
||||
|
||||
#ifndef __WINE_CTXTHANDLE_DEFINED__
|
||||
#define __WINE_CTXTHANDLE_DEFINED__
|
||||
typedef SecHandle CtxtHandle;
|
||||
typedef PSecHandle PCtxtHandle;
|
||||
#endif
|
||||
|
||||
typedef struct _SECURITY_INTEGER
|
||||
{
|
||||
|
|
|
@ -32,8 +32,11 @@ typedef struct _SecHandle
|
|||
} SecHandle, *PSecHandle;
|
||||
#endif
|
||||
|
||||
#ifndef __WINE_CTXTHANDLE_DEFINED__
|
||||
#define __WINE_CTXTHANDLE_DEFINED__
|
||||
typedef SecHandle CtxtHandle;
|
||||
typedef PSecHandle PCtxtHandle;
|
||||
#endif
|
||||
|
||||
typedef struct _CREDENTIAL_ATTRIBUTEA
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue