/* * PROJECT: ReactOS Device Management * LICENSE: GPL - See COPYING in the top level directory * FILE: base/applications/mscutils/devmgmt/devmgmt.c * PURPOSE: Bootstrap for the device manager * COPYRIGHT: Copyright 2006 Ged Murphy */ #define WIN32_NO_STATUS #include #include #include #include #include int WINAPI wWinMain(HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow) { if (!DeviceManager_ExecuteW(NULL, hThisInstance, NULL, nCmdShow)) { return GetLastError(); } return 0; }