1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#include "mwcc_decomp.h"
static void CLGetErrorString(SInt16 errid, char *buffer) {
}
static void CLMessageReporter(int flags, SInt16 errid, va_list va) {
}
void CLReportError(SInt16 errid, ...) {
}
void CLReportWarning(SInt16 errid, ...) {
}
void CLReport(SInt16 errid, ...) {
}
void CLReportOSError(SInt16 errid, int err, ...) {
}
void CLReportCError(SInt16 errid, int err_no, ...) {
}
void CLInternalError(const char *file, int line, const char *format, ...) {
}
void CLFatalError(const char *format, ...) {
}
|