mirror of
https://github.com/0ldsk00l/nestopia.git
synced 2025-04-02 10:31:51 -04:00
22 lines
470 B
C++
22 lines
470 B
C++
#ifndef _CHEATS_H_
|
|
#define _CHEATS_H_
|
|
|
|
#include "core/api/NstApiEmulator.hpp"
|
|
#include "core/api/NstApiCheats.hpp"
|
|
#include "core/api/NstApiDipSwitches.hpp"
|
|
#include "core/NstStream.hpp"
|
|
#include "core/NstXml.hpp"
|
|
|
|
using namespace Nes::Api;
|
|
|
|
typedef Nes::Core::Xml Xml;
|
|
|
|
void cheats_init();
|
|
void cheats_code_gg_add(const wchar_t *data);
|
|
void cheats_code_par_add(const wchar_t *data);
|
|
void cheats_code_raw_add(Xml::Node node);
|
|
|
|
// DIP Switches
|
|
void dip_handle();
|
|
|
|
#endif
|