mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
[UXTHEME]
* Set the default debugging channel globally through the main header. * Remove one time inclusions from the main header and put them back where they belong. CORE-7716 svn path=/trunk/; revision=61456
This commit is contained in:
parent
833e0020ba
commit
8313d9bf2b
13 changed files with 9 additions and 37 deletions
|
@ -19,9 +19,6 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
|
||||
/***********************************************************************
|
||||
* BufferedPaintInit (UXTHEME.@)
|
||||
|
|
|
@ -19,9 +19,8 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
#include <stdlib.h>
|
||||
|
||||
/***********************************************************************
|
||||
* Defines and global variables
|
||||
|
|
|
@ -19,9 +19,6 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
|
||||
/***********************************************************************/
|
||||
|
||||
|
|
|
@ -19,9 +19,6 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
|
||||
/***********************************************************************
|
||||
* GetThemeSysBool (UXTHEME.@)
|
||||
|
|
|
@ -19,10 +19,8 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
#include <wine/unicode.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
#include <wine/unicode.h>
|
||||
|
||||
/***********************************************************************
|
||||
* Defines and global variables
|
||||
|
|
|
@ -10,9 +10,8 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
#include <assert.h>
|
||||
|
||||
static BOOL SCROLL_trackVertical;
|
||||
static enum SCROLL_HITTEST SCROLL_trackHitTest;
|
||||
|
|
|
@ -7,9 +7,6 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
|
||||
HFONT hMenuFont = NULL;
|
||||
HFONT hMenuFontBold = NULL;
|
||||
|
|
|
@ -19,9 +19,6 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
|
||||
/***********************************************************************
|
||||
* GetThemeBool (UXTHEME.@)
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
typedef struct _MSSTYLES_PROPERTY_MAP {
|
||||
WORD dwPrimitiveType;
|
||||
|
|
|
@ -19,9 +19,9 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
#include <winreg.h>
|
||||
#include <uxundoc.h>
|
||||
|
||||
/***********************************************************************
|
||||
* Defines and global variables
|
||||
|
|
|
@ -7,9 +7,6 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
|
||||
USERAPIHOOK user32ApiHook;
|
||||
BYTE gabDWPmessages[UAHOWP_MAX_SIZE];
|
||||
|
|
|
@ -19,10 +19,7 @@
|
|||
*/
|
||||
|
||||
#include "uxthemep.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
|
||||
#include <winnls.h>
|
||||
/***********************************************************************
|
||||
* Defines and global variables
|
||||
*/
|
||||
|
|
|
@ -1,21 +1,19 @@
|
|||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <wingdi.h>
|
||||
#include <winreg.h>
|
||||
#include <winnls.h>
|
||||
#include <winuser.h>
|
||||
#include <windowsx.h>
|
||||
#include <undocuser.h>
|
||||
#include <uxtheme.h>
|
||||
#include <uxundoc.h>
|
||||
#include <vfwmsgs.h>
|
||||
#include <tmschema.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
|
||||
|
||||
#define TMT_ENUM 200
|
||||
|
||||
#define MAX_THEME_APP_NAME 60
|
||||
|
|
Loading…
Reference in a new issue