mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-09-13 09:16:14 -07:00
90 lines
672 B
Plaintext
90 lines
672 B
Plaintext
|
[preproc]
|
||
|
#define KEY
|
||
|
#ifdef KEY
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#define KEY
|
||
|
#if defined(KEY)
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#define KEY
|
||
|
#if defined KEY
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#ifndef KEY
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#if !defined(KEY)
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#define KEY
|
||
|
#ifndef KEY
|
||
|
fail
|
||
|
#else
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#ifdef KEY
|
||
|
fail
|
||
|
#else
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#define KEY(a, b)
|
||
|
#ifdef KEY
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#ifdef KEY
|
||
|
fail
|
||
|
#endif
|
||
|
#define KEY
|
||
|
pass
|
||
|
|
||
|
[preproc]
|
||
|
#define KEY 0
|
||
|
#ifdef KEY
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#define KEY
|
||
|
#undef KEY
|
||
|
#ifndef KEY
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#if KEY
|
||
|
fail
|
||
|
#else
|
||
|
pass
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#if KEY == 0
|
||
|
pass
|
||
|
#else
|
||
|
fail
|
||
|
#endif
|
||
|
|
||
|
[preproc]
|
||
|
#if KEY == 1
|
||
|
fail
|
||
|
#else
|
||
|
pass
|
||
|
#endif
|