ucrtbase: Add the new universal CRT DLL.
This commit is contained in:
parent
7bed453481
commit
599d92a268
|
@ -1282,6 +1282,7 @@ enable_tapi32
|
||||||
enable_taskschd
|
enable_taskschd
|
||||||
enable_traffic
|
enable_traffic
|
||||||
enable_twain_32
|
enable_twain_32
|
||||||
|
enable_ucrtbase
|
||||||
enable_unicows
|
enable_unicows
|
||||||
enable_updspapi
|
enable_updspapi
|
||||||
enable_url
|
enable_url
|
||||||
|
@ -17703,6 +17704,7 @@ wine_fn_config_dll twain.dll16 enable_win16
|
||||||
wine_fn_config_dll twain_32 enable_twain_32
|
wine_fn_config_dll twain_32 enable_twain_32
|
||||||
wine_fn_config_test dlls/twain_32/tests twain_32_test
|
wine_fn_config_test dlls/twain_32/tests twain_32_test
|
||||||
wine_fn_config_dll typelib.dll16 enable_win16
|
wine_fn_config_dll typelib.dll16 enable_win16
|
||||||
|
wine_fn_config_dll ucrtbase enable_ucrtbase
|
||||||
wine_fn_config_dll unicows enable_unicows implib
|
wine_fn_config_dll unicows enable_unicows implib
|
||||||
wine_fn_config_dll updspapi enable_updspapi
|
wine_fn_config_dll updspapi enable_updspapi
|
||||||
wine_fn_config_dll url enable_url implib
|
wine_fn_config_dll url enable_url implib
|
||||||
|
|
|
@ -3304,6 +3304,7 @@ WINE_CONFIG_DLL(twain.dll16,enable_win16)
|
||||||
WINE_CONFIG_DLL(twain_32)
|
WINE_CONFIG_DLL(twain_32)
|
||||||
WINE_CONFIG_TEST(dlls/twain_32/tests)
|
WINE_CONFIG_TEST(dlls/twain_32/tests)
|
||||||
WINE_CONFIG_DLL(typelib.dll16,enable_win16)
|
WINE_CONFIG_DLL(typelib.dll16,enable_win16)
|
||||||
|
WINE_CONFIG_DLL(ucrtbase)
|
||||||
WINE_CONFIG_DLL(unicows,,[implib])
|
WINE_CONFIG_DLL(unicows,,[implib])
|
||||||
WINE_CONFIG_DLL(updspapi)
|
WINE_CONFIG_DLL(updspapi)
|
||||||
WINE_CONFIG_DLL(url,,[implib])
|
WINE_CONFIG_DLL(url,,[implib])
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
EXTRADEFS = -D_MT -D_MSVCR_VER=140
|
||||||
|
MODULE = ucrtbase.dll
|
||||||
|
DELAYIMPORTS = advapi32 user32
|
||||||
|
PARENTSRC = ../msvcrt
|
||||||
|
|
||||||
|
C_SRCS = \
|
||||||
|
console.c \
|
||||||
|
cpp.c \
|
||||||
|
ctype.c \
|
||||||
|
data.c \
|
||||||
|
dir.c \
|
||||||
|
environ.c \
|
||||||
|
errno.c \
|
||||||
|
except.c \
|
||||||
|
except_arm.c \
|
||||||
|
except_i386.c \
|
||||||
|
except_x86_64.c \
|
||||||
|
exit.c \
|
||||||
|
file.c \
|
||||||
|
heap.c \
|
||||||
|
locale.c \
|
||||||
|
lock.c \
|
||||||
|
main.c \
|
||||||
|
math.c \
|
||||||
|
mbcs.c \
|
||||||
|
misc.c \
|
||||||
|
process.c \
|
||||||
|
string.c \
|
||||||
|
thread.c \
|
||||||
|
time.c \
|
||||||
|
undname.c \
|
||||||
|
wcs.c
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue