[MAGNIFY]

* Designate magnifier.h as a precompiled header and use it as one.

svn path=/trunk/; revision=52885
This commit is contained in:
Amine Khaldi 2011-07-26 00:08:58 +00:00
parent fa0f9a6367
commit 3c6161ed9e
6 changed files with 11 additions and 8 deletions

View file

@ -6,6 +6,7 @@ add_executable(magnify
settings.c
magnify.rc)
add_pch(magnify magnifier.h)
set_module_type(magnify win32gui)
add_importlibs(magnify user32 gdi32 advapi32 shell32 msvcrt kernel32)
add_cd_file(TARGET magnify DESTINATION reactos/system32 FOR all)

View file

@ -7,10 +7,7 @@
*
*/
#include <windows.h>
#include <shellapi.h>
#include "magnifier.h"
#include "resource.h"
const TCHAR szWindowClass[] = TEXT("MAGNIFIER");

View file

@ -20,6 +20,12 @@
//////////////////////////////////////////////////////////////////
#include <windows.h>
#include <commctrl.h>
#include <tchar.h>
#include <shellapi.h>
#include "resource.h"
extern int iZoom;
extern BOOL bShowWarning;

View file

@ -9,4 +9,5 @@
<file>magnifier.c</file>
<file>settings.c</file>
<file>magnify.rc</file>
<pch>magnifier.h</pch>
</module>

View file

@ -1,6 +1,5 @@
#include <windows.h>
#include <commctrl.h>
#include "resource.h"
#include "magnifier.h"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL

View file

@ -1,5 +1,4 @@
#include <windows.h>
#include <tchar.h>
#include "magnifier.h"
int iZoom = 3;