blob: c8d1190b6a8756be58837f641430a5dda8a1193d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// winutil.h - Win32 OSD core utility functions
//
//============================================================
#ifndef __WINUTIL__
#define __WINUTIL__
#include "osdcore.h"
// Shared code
file_error win_error_to_file_error(DWORD error);
osd_dir_entry_type win_attributes_to_entry_type(DWORD attributes);
BOOL win_is_gui_application(void);
HMODULE WINAPI GetModuleHandleUni();
#endif // __WINUTIL__
|