mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +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/*.*)
|
||||
add_rc_deps(reactos.rc ${reactos_rc_deps})
|
||||
add_executable(reactos ${SOURCE} reactos.rc)
|
||||
set_module_type(reactos win32gui UNICODE)
|
||||
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 zlib_solo) ## We use USETUP's cabinet implementation
|
||||
add_importlibs(reactos advapi32 gdi32 user32 comctl32 shlwapi setupapi msvcrt kernel32 ntdll)
|
||||
|
|
|
@ -458,9 +458,20 @@ extern BOOL TreeListUnregister(HINSTANCE hInstance);
|
|||
/* Compat with my old code... */
|
||||
#define TLCOLUMN TVCOLUMN
|
||||
#define HTLITEM HTREEITEM
|
||||
|
||||
#define TL_INSERTSTRUCTA TV_INSERTSTRUCTA
|
||||
#define TLINSERTSTRUCTA TVINSERTSTRUCTA
|
||||
#define TL_INSERTSTRUCTW TV_INSERTSTRUCTW
|
||||
#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 */
|
||||
#ifndef __REACTOS__
|
||||
|
|
Loading…
Reference in a new issue