blob: 3a8d0ec6aef0062cfc0214e35680c882f2795e4c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// For licensing and usage information, read docs/winui_license.txt
//****************************************************************************
//============================================================
//
// newui.h - NEWUI
//
//============================================================
#ifndef NEWUI_H
#define NEWUI_H
///// INCLUDES /////
#include <windows.h>
#include <commdlg.h>
#include <tchar.h>
#include "emu.h"
#include "mame.h"
#include "emuopts.h"
#include "ui/ui.h"
#include "newuires.h"
#include "strconv.h"
#include "natkeyboard.h"
#include "imagedev/cassette.h"
#include "windows/window.h"
#include "winutf8.h"
#include "modules/lib/osdobj_common.h"
// These are called from src/osd/windows/windows.c and
// provide the linkage between newui and the core.
LRESULT CALLBACK winwindow_video_window_proc_ui(HWND wnd, UINT message, WPARAM wparam, LPARAM lparam);
int win_create_menu(running_machine &machine, HMENU *menus);
#endif /* NEWUI_H */
|