mpw/toolbox/toolbox.h
Kelvin Sherlock 8bde718b83 WritePString
2013-02-13 22:16:05 -05:00

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