include: Take care to not declare CtxtHandle and PCtxtHandle more than once when including both sspi.h and wincred.h.

oldstable
Rob Shearman 2007-11-02 19:08:21 +00:00 committed by Alexandre Julliard
parent 6b21304248
commit d1696ff5fe
2 changed files with 6 additions and 0 deletions

View File

@ -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
{

View File

@ -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
{