mpw/toolbox/toolbox.h
Kelvin Sherlock 29fb14ffd2 SetFileInfo
2013-02-12 22:35:15 -05:00

16 lines
223 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);
}
#endif