ReactOS 0.4.15-dev-7953-g1f49173
devmgmt.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Device Management
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/applications/mscutils/devmgmt/devmgmt.c
5 * PURPOSE: Bootstrap for the device manager
6 * COPYRIGHT: Copyright 2006 Ged Murphy <gedmurphy@gmail.com>
7 */
8
9#define WIN32_NO_STATUS
10#include <windef.h>
11#include <winbase.h>
12#include <winreg.h>
13
14#include <cfgmgr32.h>
15#include <devmgr.h>
16
17int WINAPI
18wWinMain(HINSTANCE hThisInstance,
19 HINSTANCE hPrevInstance,
20 LPWSTR lpCmdLine,
21 int nCmdShow)
22{
24 hThisInstance,
25 NULL,
26 nCmdShow))
27 {
28 return GetLastError();
29 }
30
31 return 0;
32}
int WINAPI wWinMain(HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
Definition: devmgmt.c:18
#define NULL
Definition: types.h:112
BOOL WINAPI DeviceManager_ExecuteW(HWND hWndParent, HINSTANCE hInst, LPCWSTR lpMachineName, int nCmdShow)
Definition: api.cpp:611
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define WINAPI
Definition: msvc.h:6
WCHAR * LPWSTR
Definition: xmlstorage.h:184