mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04: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 */
|