Module: wine Branch: master Commit: f16e250a2227826514a6d6953d8afbe1bae05e78 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=f16e250a2227826514a6d695...
Author: Francois Gouget fgouget@free.fr Date: Fri Sep 29 12:45:59 2006 +0200
secur32: Only include secext.h when asked to.
---
include/security.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/include/security.h b/include/security.h index 69f026b..11ff6f7 100644 --- a/include/security.h +++ b/include/security.h @@ -18,6 +18,9 @@ #ifndef _SECURITY_H #define _SECURITY_H
#include <sspi.h> + +#if defined(SECURITY_WIN32) || defined(SECURITY_KERNEL) #include <secext.h> +#endif
#endif /* _SECURITY_H */