mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 04:07:16 +00:00
[MAGNIFY]
* Designate magnifier.h as a precompiled header and use it as one. svn path=/trunk/; revision=52885
This commit is contained in:
parent
fa0f9a6367
commit
3c6161ed9e
6 changed files with 11 additions and 8 deletions
|
@ -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)
|
||||
|
|
|
@ -7,10 +7,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <shellapi.h>
|
||||
#include "magnifier.h"
|
||||
#include "resource.h"
|
||||
|
||||
const TCHAR szWindowClass[] = TEXT("MAGNIFIER");
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -9,4 +9,5 @@
|
|||
<file>magnifier.c</file>
|
||||
<file>settings.c</file>
|
||||
<file>magnify.rc</file>
|
||||
<pch>magnifier.h</pch>
|
||||
</module>
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include "resource.h"
|
||||
|
||||
#include "magnifier.h"
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#include <windows.h>
|
||||
#include <tchar.h>
|
||||
|
||||
#include "magnifier.h"
|
||||
|
||||
int iZoom = 3;
|
||||
|
|
Loading…
Reference in a new issue