#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) printf( format) |
Traces a message to stdout. | |
#define | TRACE1(format, p1) printf( format, p1) |
Traces a message to stdout. | |
#define | TRACE2(format, p1, p2) printf( format, p1, p2) |
Traces a message to stdout. | |
#define | TRACE3(format, p1, p2, p3) printf( format, p1, p2, p3) |
Traces a message to stdout. | |
#define | TRACE4(format, p1, p2, p3, p4) printf( format, p1, p2, p3, p4) |
Traces a message to stdout. | |
#define | TRACE5(format, p1, p2, p3, p4, p5) printf( format, p1, p2, p3, p4, p5) |
Traces a message to stdout. | |
#define | stricmp(str1, str2) strcasecmp( str1, str2) |
Case insensitive string compare. | |
#define | strnicmp(str1, str2, n) strncasecmp( str1, str2, n) |
Case insensitive string compare up to n characters. | |
Typedefs | |
typedef int | BOOL |
Boolean type. | |
typedef unsigned char | UINT8 |
Unsigned 8 bit word. | |
typedef unsigned short | UINT16 |
Unsigned 16 bit word. | |
typedef unsigned int | UINT32 |
Unsigned 32 bit word. | |
typedef unsigned long long | UINT64 |
Unsigned 64 bit word (Non Windows systems). | |
typedef signed char | INT8 |
Signed 8 bit word. | |
typedef short | INT16 |
Signed 16 bit word. | |
typedef int | INT32 |
Signed 32 bit word. | |
typedef long long | INT64 |
Signed 64 bit word (Non Windows systems). | |
typedef const char * | PCSTR |
Constant pointer to char. |
Definition in file cvt_common_defs.h.
|
Case insensitive string compare.
Definition at line 152 of file cvt_common_defs.h. |
|
Case insensitive string compare up to n characters.
Definition at line 164 of file cvt_common_defs.h. |
|
|
Traces a message to stdout.
Definition at line 86 of file cvt_common_defs.h. Referenced by cvt_set_MCST_CBLT(), cvt_V1190_get_enable_pattern(), cvt_V1190_get_system_info(), cvt_V1190_open(), cvt_V1190_peek_event(), cvt_V1190_set_channel_enable(), cvt_V1190_set_continuous_acquisition_mode(), cvt_V1190_set_MCST_CBLT(), cvt_V1190_set_trigger_matching_acquisition_mode(), cvt_V1724_get_channel_status(), cvt_V1724_read_buffer(), cvt_V1724_set_acquisition_mode(), cvt_V1724_set_MCST_CBLT(), cvt_V792_open(), cvt_V792_peek_event(), cvt_V792_set_channel_enable(), cvt_V792_set_MCST_CBLT(), cvt_V792_set_threshold(), cvt_V792_set_thresholds(), cvt_V792_set_zero_suppression(), and cvt_V812_set_threshold(). |
|
Traces a message to stdout.
Definition at line 97 of file cvt_common_defs.h. |
|
Traces a message to stdout.
Definition at line 109 of file cvt_common_defs.h. |
|
Traces a message to stdout.
Definition at line 122 of file cvt_common_defs.h. |
|
Traces a message to stdout.
Definition at line 136 of file cvt_common_defs.h. |