mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
f6cf6954eb
Added multiple new actions, most of them will use the system default implementation but can be forced to use a specific CLSID or IShellFolder implementation. - /shgfi (SHGetFileInfo) - /assocq (IQueryAssociations) - /shellexec (ShellExecuteEx on pidl) - /dumpmenu (Dumps the HMENU of a IContextMenu with its menu ids and verbs) Added /explorerinstance as a new wait mode and made it the default. All the other wait modes are hacks that just works around bugs in ROS.
8 lines
311 B
CMake
8 lines
311 B
CMake
|
|
add_executable(shlextdbg shlextdbg.cpp shlextdbg.rc)
|
|
|
|
set_module_type(shlextdbg win32cui UNICODE)
|
|
target_link_libraries(shlextdbg uuid cpprt atl_classes)
|
|
add_importlibs(shlextdbg ole32 comctl32 shell32 shlwapi advapi32 user32 msvcrt kernel32)
|
|
add_cd_file(TARGET shlextdbg DESTINATION reactos/system32 FOR all)
|