mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
12 lines
225 B
C++
12 lines
225 B
C++
#ifndef JASREPORT_H
|
|
#define JASREPORT_H
|
|
|
|
class JKRHeap;
|
|
|
|
void JASReportInit(JKRHeap*, int);
|
|
int JASReportGetLineMax();
|
|
int JASReportCopyBuffer(char *, int);
|
|
void JASReport(const char* message, ...);
|
|
|
|
#endif /* JASREPORT_H */
|