mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
21 lines
457 B
C
21 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 */
|