mirror of
https://github.com/holub/mame
synced 2025-06-05 12:26:35 +03:00
27 lines
596 B
Objective-C
27 lines
596 B
Objective-C
// license:BSD-3-Clause
|
|
// copyright-holders:Vas Crabb
|
|
//============================================================
|
|
//
|
|
// debugosxconsoleview.h - MacOS X Cocoa debug window handling
|
|
//
|
|
// Copyright (c) 1996-2015, Nicola Salmoria and the MAME Team.
|
|
// Visit http://mamedev.org for licensing and usage restrictions.
|
|
//
|
|
//============================================================
|
|
|
|
#import "debugosx.h"
|
|
#import "debugosxdebugview.h"
|
|
|
|
#include "emu.h"
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface MAMEConsoleView : MAMEDebugView
|
|
{
|
|
}
|
|
|
|
- (id)initWithFrame:(NSRect)f machine:(running_machine &)m;
|
|
|
|
@end
|