mpw/toolbox/toolbox.h

16 lines
223 B
C
Raw Normal View History

2013-02-07 04:44:12 +00:00
#ifndef __mpw_toolbox_h__
#define __mpw_toolbox_h__
2013-02-13 03:35:15 +00:00
#include <string>
2013-02-08 00:21:47 +00:00
namespace ToolBox
{
void dispatch(uint16_t trap);
2013-02-13 03:35:15 +00:00
std::string ReadCString(uint32_t address);
std::string ReadPString(uint32_t address);
2013-02-08 00:21:47 +00:00
}
2013-02-07 04:44:12 +00:00
#endif