From 4904c807d89466bd770f74dd447e893861e8abe2 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 8 Jul 2008 21:29:28 +0200 Subject: [PATCH] wine/test.h: Don't allow to use config.h in tests. --- include/wine/test.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wine/test.h b/include/wine/test.h index f3de956ad34..02fc3912276 100644 --- a/include/wine/test.h +++ b/include/wine/test.h @@ -26,6 +26,9 @@ #include #include +#ifdef __WINE_CONFIG_H +#error config.h should not be used in Wine tests +#endif #ifdef __WINE_WINE_LIBRARY_H #error wine/library.h should not be used in Wine tests #endif