; charset=UTF-8
Last-Modified: Fri, 02 May 2025 15:18:10 GMT
Expires: Mon, 30 Apr 2035 15:18:10 GMT
ETag: "3eb10eb35d7ea1386dcd3b5ef8162f5a46fdbdcd"
blob: a1f6aab24273c2d3c046e0a28a5bdc30e8ecda1a (
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
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// winmenu.c - Win32 OSD core dummy menu implementation
//
//============================================================
// standard windows headers
#define WIN32_LEAN_AND_MEAN
#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;
}
|