summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/win/pointswininfo.h
blob: a6c944bc160abe91b9fb87e36e2e9a940366c814 (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
// license:BSD-3-Clause
// copyright-holders:Aaron Giles, Vas Crabb
//============================================================
//
//  pointswininfo.h - Win32 debug window handling
//
//============================================================

#ifndef __DEBUG_WIN_POINTS_WIN_INFO_H__
#define __DEBUG_WIN_POINTS_WIN_INFO_H__

#include "debugwin.h"

#include "debugwininfo.h"


class pointswin_info : public debugwin_info
{
public:
	pointswin_info(debugger_windows_interface &debugger);
	virtual ~pointswin_info();

	virtual bool handle_key(WPARAM wparam, LPARAM lparam);

protected:
	virtual void update_menu();
	virtual bool handle_command(WPARAM wparam, LPARAM lparam);
};

#endif