2015-10-15 17:21:37 +00:00
|
|
|
//#pragma once
|
2004-04-04 21:49:15 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#ifndef __REACTOS__
|
2014-01-23 11:13:16 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <windowsx.h>
|
2005-11-25 14:17:30 +00:00
|
|
|
#include <setupapi.h>
|
|
|
|
#include <cfgmgr32.h>
|
2015-10-15 17:21:37 +00:00
|
|
|
#include <commctrl.h>
|
|
|
|
#include <Uxtheme.h>
|
|
|
|
#include <Cfgmgr32.h>
|
|
|
|
#include <devguid.h>
|
|
|
|
#include <process.h>
|
2015-10-22 17:21:30 +00:00
|
|
|
#include <dbt.h>
|
2015-10-15 17:21:37 +00:00
|
|
|
#include <RegStr.h>
|
2013-11-17 19:14:08 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <atlbase.h>
|
|
|
|
#include <atlstr.h>
|
|
|
|
#include <atlcoll.h>
|
2013-11-17 19:14:08 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#include <strsafe.h>
|
2013-11-17 19:14:08 +00:00
|
|
|
|
2015-10-19 13:52:12 +00:00
|
|
|
#include <devmgr/devmgr.h>
|
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#define ERR printf
|
|
|
|
#define FIXME printf
|
|
|
|
#define UNIMPLEMENTED
|
|
|
|
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
|
2013-11-17 19:14:08 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
DWORD WINAPI pSetupGuidFromString(PCWSTR pString, LPGUID lpGUID);
|
2005-12-03 16:42:41 +00:00
|
|
|
|
|
|
|
BOOL
|
2015-10-15 17:21:37 +00:00
|
|
|
WINAPI
|
|
|
|
InstallDevInst(
|
|
|
|
IN HWND hWndParent,
|
|
|
|
IN LPCWSTR InstanceId,
|
|
|
|
IN BOOL bUpdate,
|
|
|
|
OUT LPDWORD lpReboot);
|
2005-11-25 14:17:30 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#else
|
2005-12-09 21:57:24 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <wchar.h>
|
2005-12-01 16:02:15 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#include <tchar.h>
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winreg.h>
|
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winnls.h>
|
|
|
|
#include <wincon.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <strsafe.h>
|
|
|
|
#include <process.h>
|
|
|
|
#include <windowsx.h>
|
|
|
|
#include <strsafe.h>
|
|
|
|
#include <regstr.h>
|
|
|
|
#include <newdevp.h>
|
2015-10-22 17:21:30 +00:00
|
|
|
#include <dbt.h>
|
2005-12-01 16:02:15 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#include <setupapi.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <cfgmgr32.h>
|
|
|
|
#include <uxtheme.h>
|
|
|
|
#include <devguid.h>
|
2005-12-05 20:23:23 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#include <atlbase.h>
|
|
|
|
#include <atlstr.h>
|
|
|
|
#include <atlcoll.h>
|
2005-11-26 16:54:56 +00:00
|
|
|
|
2015-10-19 13:52:12 +00:00
|
|
|
#include <devmgr/devmgr.h>
|
2015-10-15 17:21:37 +00:00
|
|
|
#include <wine/debug.h>
|
2005-11-30 16:33:05 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
//WINE_DEFAULT_DEBUG_CHANNEL(devmgr);
|
2005-12-29 21:43:21 +00:00
|
|
|
|
2015-10-15 17:21:37 +00:00
|
|
|
#endif
|