blob: 7a469a2807f07c32993a42cc5078e5a4717b0e66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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);
#endif // __WINUTIL__
|