mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[SETUP:REACTOS] treelist.h: Define few useful types. CMakeFiles.txt: Move add_pch around.
This commit is contained in:
parent
64b58397f3
commit
83d9f6c99b
2 changed files with 14 additions and 3 deletions
|
@ -17,8 +17,8 @@ list(APPEND SOURCE
|
||||||
file(GLOB reactos_rc_deps res/*.*)
|
file(GLOB reactos_rc_deps res/*.*)
|
||||||
add_rc_deps(reactos.rc ${reactos_rc_deps})
|
add_rc_deps(reactos.rc ${reactos_rc_deps})
|
||||||
add_executable(reactos ${SOURCE} reactos.rc)
|
add_executable(reactos ${SOURCE} reactos.rc)
|
||||||
set_module_type(reactos win32gui UNICODE)
|
|
||||||
add_pch(reactos reactos.h SOURCE)
|
add_pch(reactos reactos.h SOURCE)
|
||||||
|
set_module_type(reactos win32gui UNICODE)
|
||||||
target_link_libraries(reactos uuid setuplib ext2lib vfatlib btrfslib)
|
target_link_libraries(reactos uuid setuplib ext2lib vfatlib btrfslib)
|
||||||
target_link_libraries(reactos zlib_solo) ## We use USETUP's cabinet implementation
|
target_link_libraries(reactos zlib_solo) ## We use USETUP's cabinet implementation
|
||||||
add_importlibs(reactos advapi32 gdi32 user32 comctl32 shlwapi setupapi msvcrt kernel32 ntdll)
|
add_importlibs(reactos advapi32 gdi32 user32 comctl32 shlwapi setupapi msvcrt kernel32 ntdll)
|
||||||
|
|
|
@ -457,10 +457,21 @@ extern BOOL TreeListUnregister(HINSTANCE hInstance);
|
||||||
|
|
||||||
/* Compat with my old code... */
|
/* Compat with my old code... */
|
||||||
#define TLCOLUMN TVCOLUMN
|
#define TLCOLUMN TVCOLUMN
|
||||||
#define HTLITEM HTREEITEM
|
#define HTLITEM HTREEITEM
|
||||||
|
|
||||||
#define TL_INSERTSTRUCTA TV_INSERTSTRUCTA
|
#define TL_INSERTSTRUCTA TV_INSERTSTRUCTA
|
||||||
|
#define TLINSERTSTRUCTA TVINSERTSTRUCTA
|
||||||
#define TL_INSERTSTRUCTW TV_INSERTSTRUCTW
|
#define TL_INSERTSTRUCTW TV_INSERTSTRUCTW
|
||||||
#define TL_INSERTSTRUCT TV_INSERTSTRUCT
|
#define TLINSERTSTRUCTW TVINSERTSTRUCTW
|
||||||
|
#define TL_INSERTSTRUCT TV_INSERTSTRUCT
|
||||||
|
#define TLINSERTSTRUCT TVINSERTSTRUCT
|
||||||
|
|
||||||
|
#define TL_ITEMA TV_ITEMA
|
||||||
|
#define TLITEMA TVITEMA
|
||||||
|
#define TL_ITEMW TV_ITEMW
|
||||||
|
#define TLITEMW TVITEMW
|
||||||
|
#define TL_ITEM TV_ITEM
|
||||||
|
#define TLITEM TVITEM
|
||||||
|
|
||||||
/* New stuff */
|
/* New stuff */
|
||||||
#ifndef __REACTOS__
|
#ifndef __REACTOS__
|
||||||
|
|
Loading…
Reference in a new issue