LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
Defines.h
1 #ifndef RUNIT_DEFINES_H_
2 #define RUNIT_DEFINES_H_
3 
4 #include <vxWorks.h>
5 
6 #define DELETE(p) delete p; \
7  p = NULL;
8 
9 #define DELETE_ARR(p) delete[] p \
10  p = NULL;
11 
12 typedef INT32 (*RU_FUNCPTR)(...);
13 
14 #endif