From 417ebe6a67afde175886f6a7f0aed9499bf812b8 Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Tue, 28 Oct 2014 16:37:17 +0000 Subject: [PATCH] Move #includes to stdafx.h. Signed-off-by: Daira Hopwood --- .../windows/installer/installer/installer.cpp | 15 --------------- .../windows/installer/installer/stdafx.h | 16 +++++++++++++--- 2 files changed, 13 insertions(+), 18 deletions(-) diff --git a/misc/build_helpers/windows/installer/installer/installer.cpp b/misc/build_helpers/windows/installer/installer/installer.cpp index a22df486..2e653bd7 100644 --- a/misc/build_helpers/windows/installer/installer/installer.cpp +++ b/misc/build_helpers/windows/installer/installer/installer.cpp @@ -2,21 +2,6 @@ // #include "stdafx.h" -#include -#include -#include -#include -#include - -// Turn off the warnings nagging you to use the more complicated *_s -// "secure" functions that are actually more difficult to use securely. -#pragma warning(disable:4996) - -#define WIN32_LEAN_AND_MEAN -#include -#include -#include -#include int wmain(int argc, wchar_t *argv[]); wchar_t * get_default_destination_dir(); diff --git a/misc/build_helpers/windows/installer/installer/stdafx.h b/misc/build_helpers/windows/installer/installer/stdafx.h index b005a839..7963cd77 100644 --- a/misc/build_helpers/windows/installer/installer/stdafx.h +++ b/misc/build_helpers/windows/installer/installer/stdafx.h @@ -8,8 +8,18 @@ #include "targetver.h" #include -#include +#include +#include +#include +#include +#include +// Turn off the warnings nagging you to use the more complicated *_s +// "secure" functions that are actually more difficult to use securely. +#pragma warning(disable:4996) - -// TODO: reference additional headers your program requires here +#define WIN32_LEAN_AND_MEAN +#include +#include +#include +#include -- 2.45.2