RetroArch
ui_win32.h
Go to the documentation of this file.
1 /* RetroArch - A frontend for libretro.
2  * Copyright (C) 2010-2014 - Hans-Kristian Arntzen
3  * Copyright (C) 2011-2017 - Daniel De Matteis
4  *
5  * RetroArch is free software: you can redistribute it and/or modify it under the terms
6  * of the GNU General Public License as published by the Free Software Found-
7  * ation, either version 3 of the License, or (at your option) any later version.
8  *
9  * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11  * PURPOSE. See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along with RetroArch.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef _WIN32_UI
18 #define _WIN32_UI
19 
20 #include <stdint.h>
21 #include <stddef.h>
22 
23 #include <boolean.h>
24 #include <retro_common_api.h>
25 
26 #ifndef _XBOX
27 #define WIN32_LEAN_AND_MEAN
28 #include <windows.h>
29 #endif
30 
31 #include "../ui_companion_driver.h"
32 
34 
35 typedef struct ui_application_win32
36 {
37  void *empty;
39 
40 typedef struct ui_window_win32
41 {
42  HWND hwnd;
44 
45 extern VOID (WINAPI *DragAcceptFiles_func)(HWND, BOOL);
46 
48 
49 #endif
RETRO_BEGIN_DECLS struct ui_application_win32 ui_application_win32_t
BOOL
Definition: ui_win32.h:45
struct ui_window_win32 ui_window_win32_t
#define RETRO_BEGIN_DECLS
Definition: retro_common_api.h:41
void * empty
Definition: ui_win32.h:37
Definition: ui_win32.h:40
#define RETRO_END_DECLS
Definition: retro_common_api.h:42
HWND hwnd
Definition: ui_win32.h:42
VOID(WINAPI *DragAcceptFiles_func)(HWND
Definition: ui_win32.h:35