Author: tkreuzer Date: Wed Apr 16 16:55:47 2008 New Revision: 32991
URL: http://svn.reactos.org/svn/reactos?rev=32991&view=rev Log: - fix build - remobe RegisterThreadAcceleratorTable prototype (function doesn't exist)
Modified: trunk/reactos/subsystems/win32/win32k/include/accelerator.h trunk/reactos/subsystems/win32/win32k/include/bitmaps.h trunk/reactos/subsystems/win32/win32k/include/dc.h trunk/reactos/subsystems/win32/win32k/include/gdiobj.h
Modified: trunk/reactos/subsystems/win32/win32k/include/accelerator.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/inc... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/include/accelerator.h [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/include/accelerator.h [iso-8859-1] Wed Apr 16 16:55:47 2008 @@ -17,8 +17,6 @@ NTSTATUS FASTCALL CleanupAcceleratorImpl();
-VOID -RegisterThreadAcceleratorTable(struct _ETHREAD *Thread); PACCELERATOR_TABLE FASTCALL UserGetAccelObject(HACCEL);
#endif /* _WIN32K_ACCELERATOR_H */
Modified: trunk/reactos/subsystems/win32/win32k/include/bitmaps.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/inc... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/include/bitmaps.h [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/include/bitmaps.h [iso-8859-1] Wed Apr 16 16:55:47 2008 @@ -2,8 +2,8 @@ #ifndef __WIN32K_BITMAPS_H #define __WIN32K_BITMAPS_H
-#include <include/win32.h> -#include <include/gdiobj.h> +#include "win32.h" +#include "gdiobj.h"
/* GDI logical bitmap object */ typedef struct _BITMAPOBJ
Modified: trunk/reactos/subsystems/win32/win32k/include/dc.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/inc... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/include/dc.h [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/include/dc.h [iso-8859-1] Wed Apr 16 16:55:47 2008 @@ -1,8 +1,8 @@ #ifndef __WIN32K_DC_H #define __WIN32K_DC_H
-#include <include/brush.h> -#include <include/bitmaps.h> +#include "brush.h" +#include "bitmaps.h"
/* Constants ******************************************************************/
Modified: trunk/reactos/subsystems/win32/win32k/include/gdiobj.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/inc... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/include/gdiobj.h [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/include/gdiobj.h [iso-8859-1] Wed Apr 16 16:55:47 2008 @@ -8,7 +8,7 @@
/* Public GDI Object/Handle definitions */ #include <win32k/ntgdihdl.h> -#include <include/win32.h> +#include "win32.h"
typedef struct _GDI_HANDLE_TABLE {