Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | pmbaty | 1 | #ifndef _DIAG_H_ |
2 | #define _DIAG_H_ |
||
3 | |||
4 | #include "brender/br_types.h" |
||
5 | void BrFailure(const char* s, ...); |
||
6 | |||
7 | void BrWarning(const char* s, ...); |
||
8 | |||
9 | void BrFatal(const char* name, int line, const char* s, ...); |
||
10 | |||
11 | void _BrAssert(const char* condition, const char* file, unsigned int line); |
||
12 | |||
13 | void _BrUAssert(const char* condition, const char* file, unsigned int line); |
||
14 | |||
15 | #endif |