mirror of
https://github.com/reactos/reactos.git
synced 2025-05-24 19:56:38 +00:00

URLs are getting old. We have to update URLs for documentation purpose. JIRA issue: CORE-19963 - Refresh old URLs. - Add " (DEAD_LINK)" labels to dead links. - Use MS Learn links rather than MSDN ones. - Some dead links revived by Web Archive. - Don't change Wine Tests and Wine Sync. - Don't change 3rd party libraries. - Don't append "redirected" labels.
36 lines
1,014 B
C++
36 lines
1,014 B
C++
/*
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS devmgr.dll
|
|
* FILE: lib/devmgr/stubs.c
|
|
* PURPOSE: devmgr.dll stubs
|
|
* PROGRAMMER: Thomas Weidenmueller (w3seek@users.sourceforge.net)
|
|
* NOTES: If you implement a function, remove it from this file
|
|
*
|
|
* Some helpful resources:
|
|
* http://support.microsoft.com/default.aspx?scid=kb;%5BLN%5D;815320 (DEAD_LINK)
|
|
* https://web.archive.org/web/20050321020634/http://www.jsifaq.com/SUBO/tip7400/rh7482.htm
|
|
* https://web.archive.org/web/20050909185602/http://www.jsifaq.com/SUBM/tip6400/rh6490.htm
|
|
*
|
|
* UPDATE HISTORY:
|
|
* 04-04-2004 Created
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
// remove me
|
|
BOOL
|
|
WINAPI
|
|
InstallDevInst(
|
|
IN HWND hWndParent,
|
|
IN LPCWSTR InstanceId,
|
|
IN BOOL bUpdate,
|
|
OUT LPDWORD lpReboot)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
unsigned long __stdcall pSetupGuidFromString(wchar_t const *, struct _GUID *)
|
|
{
|
|
return 1;
|
|
}
|