Home | History | Annotate | Download | only in msvc

Lines Matching refs:disable

13 /* Disable: warning C4200: nonstandard extension used : zero-sized array in struct/union */
14 #pragma warning(disable:4200)
15 /* Disable: warning C6258: Using TerminateThread does not allow proper thread clean up */
16 #pragma warning(disable: 6258)
17 /* Disable: warning C4996: 'GetVersionA': was declared deprecated */
18 #pragma warning(disable: 4996)
21 /* Disable "Banned API" errors when using the MS's WDK OACR/Prefast */
22 #pragma warning(disable:28719)
23 /* Disable "The function 'InitializeCriticalSection' must be called from within a try/except block" */
24 #pragma warning(disable:28125)