mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
[SPIDER]
* Designate spider.h as a precompiled header and use it as one. svn path=/trunk/; revision=52884
This commit is contained in:
parent
bcfa5805e1
commit
fa0f9a6367
5 changed files with 11 additions and 18 deletions
|
@ -12,9 +12,7 @@ add_executable(spider
|
||||||
rsrc.rc)
|
rsrc.rc)
|
||||||
|
|
||||||
target_link_libraries(spider cardlib)
|
target_link_libraries(spider cardlib)
|
||||||
|
add_pch(spider spider.h)
|
||||||
set_module_type(spider win32gui)
|
set_module_type(spider win32gui)
|
||||||
|
|
||||||
add_importlibs(spider advapi32 comctl32 user32 gdi32 msvcrt kernel32)
|
add_importlibs(spider advapi32 comctl32 user32 gdi32 msvcrt kernel32)
|
||||||
|
|
||||||
add_cd_file(TARGET spider DESTINATION reactos/system32 FOR all)
|
add_cd_file(TARGET spider DESTINATION reactos/system32 FOR all)
|
||||||
|
|
|
@ -6,13 +6,6 @@
|
||||||
* PROGRAMMER: Gregor Schneider
|
* PROGRAMMER: Gregor Schneider
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <windows.h>
|
|
||||||
#include <commctrl.h>
|
|
||||||
#include <tchar.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
#include "resource.h"
|
|
||||||
#include "cardlib.h"
|
|
||||||
#include "spider.h"
|
#include "spider.h"
|
||||||
|
|
||||||
TCHAR szHelpPath[MAX_PATH];
|
TCHAR szHelpPath[MAX_PATH];
|
||||||
|
|
|
@ -1,4 +1,12 @@
|
||||||
#pragma once
|
|
||||||
|
#include <windows.h>
|
||||||
|
#include <commctrl.h>
|
||||||
|
#include <tchar.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include "resource.h"
|
||||||
|
#include "cardlib.h"
|
||||||
|
|
||||||
|
|
||||||
#define DIFFICULTY_ONE_COLOR 1
|
#define DIFFICULTY_ONE_COLOR 1
|
||||||
#define DIFFICULTY_TWO_COLORS 2
|
#define DIFFICULTY_TWO_COLORS 2
|
||||||
|
|
|
@ -7,4 +7,5 @@
|
||||||
<file>spigame.cpp</file>
|
<file>spigame.cpp</file>
|
||||||
<file>spider.cpp</file>
|
<file>spider.cpp</file>
|
||||||
<file>rsrc.rc</file>
|
<file>rsrc.rc</file>
|
||||||
|
<pch>spider.h</pch>
|
||||||
</module>
|
</module>
|
||||||
|
|
|
@ -6,13 +6,6 @@
|
||||||
* PROGRAMMER: Gregor Schneider
|
* PROGRAMMER: Gregor Schneider
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <windows.h>
|
|
||||||
#include <commctrl.h>
|
|
||||||
#include <tchar.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#include "resource.h"
|
|
||||||
#include "cardlib.h"
|
|
||||||
#include "spider.h"
|
#include "spider.h"
|
||||||
|
|
||||||
#define NUM_DECK_CARDS 5
|
#define NUM_DECK_CARDS 5
|
||||||
|
|
Loading…
Reference in a new issue