mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 13:59:25 +00:00
2c80432268
In addition to that, add the missing function prototypes in the DLL dialog header of Utilman, add missing IN/OUT annotations and remove CheckUtilityState() prototype which is barely used (it's not implemented either).
14 lines
383 B
CMake
14 lines
383 B
CMake
|
|
spec2def(umandlg.dll umandlg.spec)
|
|
|
|
add_library(umandlg MODULE
|
|
process.c
|
|
registry.c
|
|
umandlg.c
|
|
umandlg.h
|
|
umandlg.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/umandlg.def)
|
|
|
|
set_module_type(umandlg win32dll UNICODE)
|
|
add_importlibs(umandlg comdlg32 user32 gdi32 advapi32 shell32 comctl32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET umandlg DESTINATION reactos/system32 FOR all)
|