mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[DEVMGR]
- Include "precomp.h" instead of <windef.h>. - Use UNIMPLEMENTED again. svn path=/trunk/; revision=64543
This commit is contained in:
parent
fd3b060ea5
commit
df8d2aa9d4
1 changed files with 7 additions and 7 deletions
|
@ -16,7 +16,7 @@
|
|||
* 04-04-2004 Created
|
||||
*/
|
||||
|
||||
#include <windef.h>
|
||||
#include "precomp.h"
|
||||
|
||||
|
||||
/***************************************************************************
|
||||
|
@ -51,7 +51,7 @@ DeviceManager_ExecuteA(HWND hWndParent,
|
|||
LPCSTR lpMachineName,
|
||||
int nCmdShow)
|
||||
{
|
||||
FIXME("unimplemented\n");
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -88,7 +88,7 @@ DeviceManager_ExecuteW(HWND hWndParent,
|
|||
LPCWSTR lpMachineName,
|
||||
int nCmdShow)
|
||||
{
|
||||
FIXME("unimplemented\n");
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -127,7 +127,7 @@ DeviceProblemWizard_RunDLLA(HWND hWndParent,
|
|||
LPCSTR lpDeviceCmd,
|
||||
int nCmdShow)
|
||||
{
|
||||
FIXME("unimplemented\n");
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
|
@ -165,7 +165,7 @@ DeviceProblemWizard_RunDLLW(HWND hWndParent,
|
|||
LPCWSTR lpDeviceCmd,
|
||||
int nCmdShow)
|
||||
{
|
||||
FIXME("unimplemented\n");
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
|
@ -208,7 +208,7 @@ DeviceManagerPrintA(LPCSTR lpMachineName,
|
|||
UINT uNumberOfGuids,
|
||||
LPGUID lpGuids)
|
||||
{
|
||||
FIXME("unimplemented\n");
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -252,6 +252,6 @@ DeviceManagerPrintW(LPCWSTR lpMachineName,
|
|||
UINT uNumberOfGuids,
|
||||
LPGUID lpGuids)
|
||||
{
|
||||
FIXME("unimplemented\n");
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue