2018-11-15 23:31:39 +00:00
|
|
|
/*****************************************************************************\
|
|
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
|
|
This file is licensed under the Snes9x License.
|
|
|
|
For further information, consult the LICENSE file in the root directory.
|
|
|
|
\*****************************************************************************/
|
2010-09-25 15:46:12 +00:00
|
|
|
|
|
|
|
/***********************************************************************************
|
|
|
|
SNES9X for Mac OS (c) Copyright John Stiles
|
|
|
|
|
|
|
|
Snes9x for Mac OS X
|
|
|
|
|
2011-04-10 13:44:28 +00:00
|
|
|
(c) Copyright 2001 - 2011 zones
|
2010-09-25 15:46:12 +00:00
|
|
|
(c) Copyright 2002 - 2005 107
|
|
|
|
(c) Copyright 2002 PB1400c
|
|
|
|
(c) Copyright 2004 Alexander and Sander
|
|
|
|
(c) Copyright 2004 - 2005 Steven Seeger
|
|
|
|
(c) Copyright 2005 Ryan Vogt
|
2022-02-06 23:03:46 +00:00
|
|
|
(c) Copyright 2019 - 2022 Michael Donald Buckley
|
2010-09-25 15:46:12 +00:00
|
|
|
***********************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _mac_cheat_h_
|
|
|
|
#define _mac_cheat_h_
|
|
|
|
|
2022-02-06 23:03:46 +00:00
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@interface S9xCheatItem : NSView
|
|
|
|
@property (nonatomic, assign) uint32 cheatID;
|
|
|
|
@property (nonatomic, strong) NSNumber *address;
|
|
|
|
@property (nonatomic, strong) NSNumber *value;
|
|
|
|
@property (nonatomic, strong) NSNumber *enabled;
|
|
|
|
@property (nonatomic, strong) NSString *cheatDescription;
|
|
|
|
|
|
|
|
- (void)delete;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
bool CheatValuesFromCode(NSString *code, uint32 *address, uint8 *value);
|
|
|
|
void CreateCheatFromAddress(NSNumber *address, NSNumber *value, NSString *cheatDescription);
|
|
|
|
void CreateCheatFromCode(NSString *code, NSString *cheatDescription);
|
|
|
|
NSArray<S9xCheatItem *> *GetAllCheats(void);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2010-09-25 15:46:12 +00:00
|
|
|
|
|
|
|
#endif
|