diff options
Diffstat (limited to 'tests/include/test.h')
| -rw-r--r-- | tests/include/test.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/include/test.h b/tests/include/test.h index d062277..667f384 100644 --- a/tests/include/test.h +++ b/tests/include/test.h @@ -167,6 +167,31 @@ enum TDEFL_BOGUS_3 = TDEFL_OUT_BUF_SIZE / TDEFL_BOGUS_1 }; +// cOverride +struct foo { int foo[8][1]; }; + +typedef struct tagBITMAPINFOHEADER{ + int biClrImportant; +} BITMAPINFOHEADER, * pBITMAPINFOHEADER; + +#define BIT 123u + +#define BIT2 123u + +#define BIT3 123 + +typedef int ABC; + +typedef int DEF; + +typedef struct { + int **f1; +} GHI; + +struct JKL { + int **f1; +}; + #ifdef __cplusplus } #endif |
