xref: /reactos/dll/win32/devmgr/properties/stubs.cpp (revision b36d9bd9)
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
12  *                    http://www.jsiinc.com/SUBO/tip7400/rh7482.htm
13  *                    http://www.jsiinc.com/SUBM/tip6400/rh6490.htm
14  *
15  * UPDATE HISTORY:
16  *      04-04-2004  Created
17  */
18 
19 #include "precomp.h"
20 
21 // remove me
22 BOOL
23 WINAPI
24 InstallDevInst(
25 IN HWND hWndParent,
26 IN LPCWSTR InstanceId,
27 IN BOOL bUpdate,
28 OUT LPDWORD lpReboot)
29 {
30     return FALSE;
31 }
32 
33 unsigned long __stdcall pSetupGuidFromString(wchar_t const *, struct _GUID *)
34 {
35     return 1;
36 }