1 /* 2 * PROJECT: ReactOS system libraries 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: Storage device properties 5 * COPYRIGHT: 2021 Eric Kohl (eric.kohl@reactos.org) 6 */ 7 8 #define WIN32_NO_STATUS 9 #include <stdarg.h> 10 #include <windef.h> 11 #include <winbase.h> 12 #include <winreg.h> 13 #include <winuser.h> 14 #include <commctrl.h> 15 #include <setupapi.h> 16 17 #include "resource.h" 18 19 extern HINSTANCE hInstance; 20 21 /* EOF */ 22