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

#pragma once

#include "debugwin.h"

#include "debugwininfo.h"


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

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

#endif