Module: wine Branch: master Commit: d5fb2315cb86dbf0081280db3f40b97c20b6a271 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d5fb2315cb86dbf0081280db3f...
Author: Francois Gouget fgouget@free.fr Date: Tue Nov 13 09:32:20 2007 +0100
ctapi32: Use quotes to include our headers. Fixes winapi_check warnings.
---
dlls/ctapi32/ctapi32.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/dlls/ctapi32/ctapi32.c b/dlls/ctapi32/ctapi32.c index 39fea9c..2af4632 100644 --- a/dlls/ctapi32/ctapi32.c +++ b/dlls/ctapi32/ctapi32.c @@ -18,14 +18,14 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */
-#include <config.h> -#include <wine/port.h> +#include "config.h" +#include "wine/port.h" #include <string.h> -#include <wine/library.h> -#include <wine/debug.h> -#include <windef.h> -#include <winreg.h> -#include <winnls.h> +#include "wine/library.h" +#include "wine/debug.h" +#include "windef.h" +#include "winreg.h" +#include "winnls.h" #include "ctapi.h"
WINE_DEFAULT_DEBUG_CHANNEL(ctapi32);