mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
22 lines
457 B
C
22 lines
457 B
C
|
/*
|
||
|
* PROJECT: ReactOS system libraries
|
||
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||
|
* PURPOSE: Storage device properties
|
||
|
* COPYRIGHT: 2021 Eric Kohl (eric.kohl@reactos.org)
|
||
|
*/
|
||
|
|
||
|
#define WIN32_NO_STATUS
|
||
|
#include <stdarg.h>
|
||
|
#include <windef.h>
|
||
|
#include <winbase.h>
|
||
|
#include <winreg.h>
|
||
|
#include <winuser.h>
|
||
|
#include <commctrl.h>
|
||
|
#include <setupapi.h>
|
||
|
|
||
|
#include "resource.h"
|
||
|
|
||
|
extern HINSTANCE hInstance;
|
||
|
|
||
|
/* EOF */
|