summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/windows/winutil.h
blob: 24b374aca553dd107fc78bdc0eb32fe0cedd0e99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//============================================================
//
//  winutil.h - Win32 OSD core utility functions
//
//  Copyright Nicola Salmoria and the MAME Team.
//  Visit http://mamedev.org for licensing and usage restrictions.
//
//============================================================

#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__