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

#ifndef __DEBUG_WIN_LOG_WIN_INFO_H__
#define __DEBUG_WIN_LOG_WIN_INFO_H__

#include "debugwin.h"

#include "debugwininfo.h"


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

protected:
	enum
	{
		ID_CLEAR_LOG = 1
	};
	virtual bool handle_command(WPARAM wparam, LPARAM lparam) override;
};

#endif