Author: hyperion Date: Wed Oct 29 07:58:41 2008 New Revision: 37050
URL: http://svn.reactos.org/svn/reactos?rev=37050&view=rev Log: modified winbase.h Include <intrin.h> for compiler intrinsics
modified winuser.h Removed duplicate accessibility definitions
Modified: branches/the-real-msvc/include/psdk/winbase.h branches/the-real-msvc/include/psdk/winuser.h
Modified: branches/the-real-msvc/include/psdk/winbase.h URL: http://svn.reactos.org/svn/reactos/branches/the-real-msvc/include/psdk/winba... ============================================================================== --- branches/the-real-msvc/include/psdk/winbase.h [iso-8859-1] (original) +++ branches/the-real-msvc/include/psdk/winbase.h [iso-8859-1] Wed Oct 29 07:58:41 2008 @@ -3,6 +3,8 @@ #if __GNUC__ >= 3 #pragma GCC system_header #endif + +#include <intrin.h>
#if !defined(_KERNEL32_) #define WINBASEAPI DECLSPEC_IMPORT
Modified: branches/the-real-msvc/include/psdk/winuser.h URL: http://svn.reactos.org/svn/reactos/branches/the-real-msvc/include/psdk/winus... ============================================================================== --- branches/the-real-msvc/include/psdk/winuser.h [iso-8859-1] (original) +++ branches/the-real-msvc/include/psdk/winuser.h [iso-8859-1] Wed Oct 29 07:58:41 2008 @@ -1543,12 +1543,6 @@ #define UIS_SET 1 #define UIS_CLEAR 2 #define UIS_INITIALIZE 3 - -#define UISF_HIDEFOCUS 0x1 -#define UISF_HIDEACCEL 0x2 -#if (WINVER >= 0x0501) -#define UISF_ACTIVE 0x4 -#endif
#endif