https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ac4b506eaba6f6cc81b87f...
commit ac4b506eaba6f6cc81b87fb6b12bdc824a601f87 Author: Carlo Bramini 30959007+carlo-bramini@users.noreply.github.com AuthorDate: Sun Feb 14 18:38:36 2021 +0100 Commit: GitHub noreply@github.com CommitDate: Mon Feb 15 02:38:36 2021 +0900
[SHIMGVW] Fix wrong text into the title bar. (#3459)
Unicode/ANSI conversion problem happened by some wrong ANSI function calls. This PR fixes them by modifying CMakeLists.txt. --- dll/win32/shimgvw/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/win32/shimgvw/CMakeLists.txt b/dll/win32/shimgvw/CMakeLists.txt index fefd3d1ca02..43e9f10c839 100644 --- a/dll/win32/shimgvw/CMakeLists.txt +++ b/dll/win32/shimgvw/CMakeLists.txt @@ -9,7 +9,7 @@ list(APPEND SOURCE ${CMAKE_CURRENT_BINARY_DIR}/shimgvw.def)
add_library(shimgvw MODULE ${SOURCE}) -set_module_type(shimgvw win32dll) +set_module_type(shimgvw win32dll UNICODE) target_link_libraries(shimgvw wine) add_importlibs(shimgvw advapi32 comctl32 user32 gdi32 shell32 gdiplus comdlg32 shlwapi msvcrt kernel32 ntdll) add_cd_file(TARGET shimgvw DESTINATION reactos/system32 FOR all)