mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 22:32:41 +00:00
* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
This commit is contained in:
commit
ddb3d908c9
1259 changed files with 40366 additions and 5588 deletions
|
@ -3,9 +3,9 @@ list(APPEND SOURCE
|
|||
console.c
|
||||
misc.c
|
||||
mmc.c
|
||||
mmc.rc)
|
||||
precomp.h)
|
||||
|
||||
add_executable(mmcclient ${SOURCE})
|
||||
add_executable(mmcclient ${SOURCE} mmc.rc)
|
||||
set_module_type(mmcclient win32gui UNICODE)
|
||||
add_importlibs(mmcclient user32 gdi32 comdlg32 advapi32 shell32 comctl32 msvcrt kernel32)
|
||||
add_pch(mmcclient precomp.h)
|
||||
add_pch(mmcclient precomp.h SOURCE)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _MMC_PCH_
|
||||
#define _MMC_PCH_
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <windef.h>
|
||||
|
@ -37,3 +40,5 @@ extern HINSTANCE hAppInstance;
|
|||
extern HANDLE hAppHeap;
|
||||
extern HWND hwndMainConsole;
|
||||
extern HWND hwndMDIClient;
|
||||
|
||||
#endif /* _MMC_PCH_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue