2f90188cc9dc9f520197f8651370c5968587621c
[reactos.git] / reactos / dll / win32 / newdev / stubs.c
1 /*
2 * New device installer (newdev.dll)
3 *
4 * Copyright 2005 Hervé Poussineau (hpoussin@reactos.org)
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include "newdev_private.h"
22
23 WINE_DEFAULT_DEBUG_CHANNEL(newdev);
24
25 /*
26 * @unimplemented
27 */
28 BOOL WINAPI
29 InstallNewDevice(
30 IN HWND hwndParent,
31 IN LPGUID ClassGuid OPTIONAL,
32 OUT PDWORD Reboot)
33 {
34 UNIMPLEMENTED;
35 SetLastError(ERROR_GEN_FAILURE);
36 return FALSE;
37 }
38
39 /*
40 * @unimplemented
41 */
42 BOOL WINAPI
43 InstallSelectedDriverW(
44 IN HWND hwndParent,
45 IN HDEVINFO DeviceInfoSet,
46 IN LPCWSTR Reserved,
47 IN BOOL Backup,
48 OUT PDWORD pReboot)
49 {
50 UNIMPLEMENTED;
51 SetLastError(ERROR_GEN_FAILURE);
52 return FALSE;
53 }