4 * Driver installation DLL interface
6 * This file is part of the w32api package.
9 * Created by Casper S. Hornstrup <chorns@users.sourceforge.net>
11 * THIS SOFTWARE IS NOT COPYRIGHTED
13 * This source code is offered for use in the public domain. You may
14 * use, modify or distribute it freely.
16 * This code is distributed in the hope that it will be useful but
17 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
18 * DISCLAIMED. This includes but is not limited to warranties of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
27 #pragma GCC system_header
34 /* UpdateDriverForPlugAndPlayDevices.InstallFlags constants */
35 #define INSTALLFLAG_FORCE 0x00000001
36 #define INSTALLFLAG_READONLY 0x00000002
37 #define INSTALLFLAG_NONINTERACTIVE 0x00000004
38 #define INSTALLFLAG_BITS 0x00000007
41 UpdateDriverForPlugAndPlayDevicesA(
46 PBOOL bRebootRequired
/*OPTIONAL*/);
49 UpdateDriverForPlugAndPlayDevicesW(
54 PBOOL bRebootRequired
/*OPTIONAL*/);
57 #define UpdateDriverForPlugAndPlayDevices UpdateDriverForPlugAndPlayDevicesW
59 #define UpdateDriverForPlugAndPlayDevices UpdateDriverForPlugAndPlayDevicesA
66 #endif /* __NEWDEV_H */