mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[NEWDEV]
* Remove one time inclusions from the main header and put them back where they belong. CORE-7716 svn path=/trunk/; revision=61800
This commit is contained in:
parent
52f491e006
commit
7f3ef2dfd5
3 changed files with 9 additions and 7 deletions
|
@ -22,6 +22,9 @@
|
||||||
|
|
||||||
#include "newdev_private.h"
|
#include "newdev_private.h"
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <winnls.h>
|
||||||
|
|
||||||
/* Global variables */
|
/* Global variables */
|
||||||
HINSTANCE hDllInstance;
|
HINSTANCE hDllInstance;
|
||||||
|
|
||||||
|
|
|
@ -1,31 +1,26 @@
|
||||||
#ifndef __NEWDEV_PRIVATE_H
|
#ifndef __NEWDEV_PRIVATE_H
|
||||||
#define __NEWDEV_PRIVATE_H
|
#define __NEWDEV_PRIVATE_H
|
||||||
|
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
#define WIN32_NO_STATUS
|
#define WIN32_NO_STATUS
|
||||||
#define _INC_WINDOWS
|
#define _INC_WINDOWS
|
||||||
#define COM_NO_WINDOWS_H
|
#define COM_NO_WINDOWS_H
|
||||||
|
|
||||||
#define COBJMACROS
|
#define COBJMACROS
|
||||||
|
|
||||||
#include <stdarg.h>
|
|
||||||
#include <windef.h>
|
#include <windef.h>
|
||||||
#include <winbase.h>
|
#include <winbase.h>
|
||||||
#include <winreg.h>
|
#include <winreg.h>
|
||||||
#include <wingdi.h>
|
#include <wingdi.h>
|
||||||
#include <winuser.h>
|
#include <winuser.h>
|
||||||
#include <winnls.h>
|
|
||||||
#include <windowsx.h>
|
#include <windowsx.h>
|
||||||
#include <wincon.h>
|
|
||||||
#include <newdev.h>
|
#include <newdev.h>
|
||||||
#include <regstr.h>
|
#include <regstr.h>
|
||||||
#include <cfgmgr32.h>
|
|
||||||
#include <shlobj.h>
|
|
||||||
|
|
||||||
#include <wine/debug.h>
|
#include <wine/debug.h>
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(newdev);
|
WINE_DEFAULT_DEBUG_CHANNEL(newdev);
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
|
|
||||||
extern HINSTANCE hDllInstance;
|
extern HINSTANCE hDllInstance;
|
||||||
|
|
|
@ -20,6 +20,10 @@
|
||||||
|
|
||||||
#include "newdev_private.h"
|
#include "newdev_private.h"
|
||||||
|
|
||||||
|
#include <wincon.h>
|
||||||
|
#include <cfgmgr32.h>
|
||||||
|
#include <shlobj.h>
|
||||||
|
|
||||||
HANDLE hThread;
|
HANDLE hThread;
|
||||||
|
|
||||||
static VOID
|
static VOID
|
||||||
|
|
Loading…
Reference in a new issue