Author: hpoussin Date: Sun Jun 25 01:14:41 2006 New Revision: 22589
URL: http://svn.reactos.org/svn/reactos?rev=22589&view=rev Log: Don't redefine UNICODE_STRING/STRING (may happen if winternl.h is already included)
Modified: trunk/reactos/include/ntsecapi.h
Modified: trunk/reactos/include/ntsecapi.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ntsecapi.h?rev=2258... ============================================================================== --- trunk/reactos/include/ntsecapi.h (original) +++ trunk/reactos/include/ntsecapi.h Sun Jun 25 01:14:41 2006 @@ -374,8 +374,10 @@ LONG DomainIndex; } LSA_TRANSLATED_NAME, *PLSA_TRANSLATED_NAME;
-#ifndef _NTDEF_ +#if defined(_NTDEF_) && !defined(UNICODE_STRING) typedef LSA_UNICODE_STRING UNICODE_STRING, *PUNICODE_STRING; +#endif +#if defined(_NTDEF_) && !defined(STRING) typedef LSA_STRING STRING, *PSTRING ; #endif