Reactos
at master 36 lines 1.0 kB view raw
1/* 2 * 3 * COPYRIGHT: See COPYING in the top level directory 4 * PROJECT: ReactOS devmgr.dll 5 * FILE: lib/devmgr/stubs.c 6 * PURPOSE: devmgr.dll stubs 7 * PROGRAMMER: Thomas Weidenmueller (w3seek@users.sourceforge.net) 8 * NOTES: If you implement a function, remove it from this file 9 * 10 * Some helpful resources: 11 * http://support.microsoft.com/default.aspx?scid=kb;%5BLN%5D;815320 (DEAD_LINK) 12 * https://web.archive.org/web/20050321020634/http://www.jsifaq.com/SUBO/tip7400/rh7482.htm 13 * https://web.archive.org/web/20050909185602/http://www.jsifaq.com/SUBM/tip6400/rh6490.htm 14 * 15 * UPDATE HISTORY: 16 * 04-04-2004 Created 17 */ 18 19#include "precomp.h" 20 21// remove me 22BOOL 23WINAPI 24InstallDevInst( 25IN HWND hWndParent, 26IN LPCWSTR InstanceId, 27IN BOOL bUpdate, 28OUT LPDWORD lpReboot) 29{ 30 return FALSE; 31} 32 33unsigned long __stdcall pSetupGuidFromString(wchar_t const *, struct _GUID *) 34{ 35 return 1; 36}