mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 00:32:44 +00:00
18 lines
284 B
C++
18 lines
284 B
C++
#ifndef __mpw_toolbox_h__
|
|
#define __mpw_toolbox_h__
|
|
|
|
#include <string>
|
|
|
|
namespace ToolBox
|
|
{
|
|
void dispatch(uint16_t trap);
|
|
|
|
|
|
std::string ReadCString(uint32_t address);
|
|
std::string ReadPString(uint32_t address);
|
|
bool WritePString(uint32_t address, const std::string &s);
|
|
|
|
}
|
|
|
|
|
|
#endif |