#include <stdio.h>
Go to the source code of this file.
Defines | |
| #define | TRUE -1 |
| Boolean TRUE value. | |
| #define | FALSE 0 |
| Boolean TRUE value. | |
| #define | TRACE(format) |
| Traces a message to stdout. | |
| #define | TRACE1(format, p1) |
| Traces a message to stdout. | |
| #define | TRACE2(format, p1, p2) |
| Traces a message to stdout. | |
| #define | TRACE3(format, p1, p2, p3) |
| Traces a message to stdout. | |
| #define | TRACE4(format, p1, p2, p3, p4) |
| Traces a message to stdout. | |
| #define | TRACE5(format, p1, p2, p3, p4, p5) |
| Traces a message to stdout. | |
Typedefs | |
| typedef int | BOOL |
| Boolean type. | |
| typedef const char * | PCSTR |
| Constant pointer to char. | |
Definition in file common_defs.h.
| #define TRACE | ( | format | ) |
Traces a message to stdout.
| format | The message string |
Definition at line 97 of file common_defs.h.
| #define TRACE1 | ( | format, | |||
| p1 | ) |
Traces a message to stdout.
| format | The message format string | |
| p1 | The format string parameter 1 |
Definition at line 111 of file common_defs.h.
| #define TRACE2 | ( | format, | |||
| p1, | |||||
| p2 | ) |
Traces a message to stdout.
| format | The message format string | |
| p1 | The format string parameter 1 | |
| p2 | The format string parameter 2 |
Definition at line 126 of file common_defs.h.
| #define TRACE3 | ( | format, | |||
| p1, | |||||
| p2, | |||||
| p3 | ) |
Traces a message to stdout.
| format | The message format string | |
| p1 | The format string parameter 1 | |
| p2 | The format string parameter 2 | |
| p3 | The format string parameter 3 |
Definition at line 142 of file common_defs.h.
| #define TRACE4 | ( | format, | |||
| p1, | |||||
| p2, | |||||
| p3, | |||||
| p4 | ) |
Traces a message to stdout.
| format | The message format string | |
| p1 | The format string parameter 1 | |
| p2 | The format string parameter 2 | |
| p3 | The format string parameter 3 | |
| p4 | The format string parameter 4 |
Definition at line 159 of file common_defs.h.
| #define TRACE5 | ( | format, | |||
| p1, | |||||
| p2, | |||||
| p3, | |||||
| p4, | |||||
| p5 | ) |
Traces a message to stdout.
| format | The message format string | |
| p1 | The format string parameter 1 | |
| p2 | The format string parameter 2 | |
| p3 | The format string parameter 3 | |
| p4 | The format string parameter 4 | |
| p5 | The format string parameter 5 |
Definition at line 177 of file common_defs.h.
1.5.6