summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/uiinput.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/uiinput.h')
-rw-r--r--src/emu/uiinput.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/emu/uiinput.h b/src/emu/uiinput.h
index fecc61c0c1a..2e89a0c413a 100644
--- a/src/emu/uiinput.h
+++ b/src/emu/uiinput.h
@@ -33,7 +33,6 @@ enum ui_event_type
UI_EVENT_MOUSE_DOWN,
UI_EVENT_MOUSE_UP,
UI_EVENT_MOUSE_DOUBLE_CLICK,
- UI_EVENT_MOUSE_WHEEL,
UI_EVENT_CHAR
};
@@ -45,8 +44,6 @@ struct ui_event
INT32 mouse_y;
input_item_id key;
unicode_char ch;
- short zdelta;
- int num_lines;
};
// ======================> ui_input_manager
@@ -88,9 +85,6 @@ public:
void push_mouse_up_event(render_target* target, INT32 x, INT32 y);
void push_mouse_double_click_event(render_target* target, INT32 x, INT32 y);
void push_char_event(render_target* target, unicode_char ch);
- void push_mouse_wheel_event(render_target *target, INT32 x, INT32 y, short delta, int ucNumLines);
-
- void mark_all_as_pressed();
private: