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