[COMDLG32]
[reactos.git] / reactos / dll / win32 / comdlg32 / colordlg.c
index 2acabc7..ff9067d 100644 (file)
    sometimes, especially when 2 instances of the
    dialog are loaded at the same time */
 
-#define WIN32_NO_STATUS
-
-//#include <ctype.h>
-//#include <stdlib.h>
-//#include <stdarg.h>
-#include <stdio.h>
-//#include <string.h>
-#include <windef.h>
-#include <winbase.h>
-#include <wingdi.h>
-#include <winuser.h>
-#include <commdlg.h>
-#include <dlgs.h>
-#include <wine/debug.h>
-#include <cderr.h>
 #include "cdlg.h"
 
-WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
-
 static INT_PTR CALLBACK ColorDlgProc( HWND hWnd, UINT wMsg, WPARAM wParam, LPARAM lParam );
 
 #define CONV_LPARAMTOPOINT(lp,p) do { (p)->x = (short)LOWORD(lp); (p)->y = (short)HIWORD(lp); } while(0)