blob: d55bd3e3a79c01bfa9494e624e51564a56a032f3 (
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
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// winmenu.cpp - Win32 OSD core dummy menu implementation
//
//============================================================
// standard windows headers
#include <windows.h>
#include "emu.h"
#include "window.h"
//============================================================
// winwindow_video_window_proc_ui
// (window thread)
//============================================================
LRESULT CALLBACK winwindow_video_window_proc_ui(HWND wnd, UINT message, WPARAM wparam, LPARAM lparam)
{
return win_window_info::video_window_proc(wnd, message, wparam, lparam);
}
//============================================================
// win_create_menu
//============================================================
int win_create_menu(running_machine &machine, HMENU *menus)
{
return 0;
}
|