mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
a141c91135
* [SHIMGVW] Add OLE32 for CoInitializeEx() * Implemented support for effective image size (100%). * Fix bug that could leave one of the zoom buttons if 100% size button is now pressed. * Replace a CreateWindowEx() with CreateWindowExW(). * Added stub for image delete function. * Implemented support for 'Modify' button. * [SHIMGVW] Added CoUninitialize() * [SHIMGVW] Pair CoUninitialize with CoInitializeEx
15 lines
489 B
CMake
15 lines
489 B
CMake
|
|
spec2def(shimgvw.dll shimgvw.spec)
|
|
|
|
list(APPEND SOURCE
|
|
shimgvw.c
|
|
comsup.c
|
|
shimgvw.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/shimgvw_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/shimgvw.def)
|
|
|
|
add_library(shimgvw MODULE ${SOURCE})
|
|
set_module_type(shimgvw win32dll UNICODE)
|
|
target_link_libraries(shimgvw wine)
|
|
add_importlibs(shimgvw advapi32 comctl32 user32 gdi32 shell32 ole32 gdiplus comdlg32 shlwapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET shimgvw DESTINATION reactos/system32 FOR all)
|