api-ms-win-core-processenvironment-l1-2-0: Add stub dll.
This commit is contained in:
parent
488fa8a2a0
commit
edceda579a
|
@ -868,6 +868,7 @@ enable_api_ms_win_core_localization_obsolete_l1_1_0
|
|||
enable_api_ms_win_core_localregistry_l1_1_0
|
||||
enable_api_ms_win_core_memory_l1_1_1
|
||||
enable_api_ms_win_core_namedpipe_l1_2_0
|
||||
enable_api_ms_win_core_processenvironment_l1_2_0
|
||||
enable_api_ms_win_core_processthreads_l1_1_0
|
||||
enable_api_ms_win_core_processthreads_l1_1_1
|
||||
enable_api_ms_win_core_profile_l1_1_0
|
||||
|
@ -16609,6 +16610,7 @@ wine_fn_config_dll api-ms-win-core-localization-obsolete-l1-1-0 enable_api_ms_wi
|
|||
wine_fn_config_dll api-ms-win-core-localregistry-l1-1-0 enable_api_ms_win_core_localregistry_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-memory-l1-1-1 enable_api_ms_win_core_memory_l1_1_1
|
||||
wine_fn_config_dll api-ms-win-core-namedpipe-l1-2-0 enable_api_ms_win_core_namedpipe_l1_2_0
|
||||
wine_fn_config_dll api-ms-win-core-processenvironment-l1-2-0 enable_api_ms_win_core_processenvironment_l1_2_0
|
||||
wine_fn_config_dll api-ms-win-core-processthreads-l1-1-0 enable_api_ms_win_core_processthreads_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-processthreads-l1-1-1 enable_api_ms_win_core_processthreads_l1_1_1
|
||||
wine_fn_config_dll api-ms-win-core-profile-l1-1-0 enable_api_ms_win_core_profile_l1_1_0
|
||||
|
|
|
@ -2637,6 +2637,7 @@ WINE_CONFIG_DLL(api-ms-win-core-localization-obsolete-l1-1-0)
|
|||
WINE_CONFIG_DLL(api-ms-win-core-localregistry-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-memory-l1-1-1)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-namedpipe-l1-2-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-processenvironment-l1-2-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-1)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-profile-l1-1-0)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
MODULE = api-ms-win-core-processenvironment-l1-2-0.dll
|
|
@ -0,0 +1,24 @@
|
|||
@ stdcall ExpandEnvironmentStringsA(str ptr long) kernel32.ExpandEnvironmentStringsA
|
||||
@ stdcall ExpandEnvironmentStringsW(wstr ptr long) kernel32.ExpandEnvironmentStringsW
|
||||
@ stdcall FreeEnvironmentStringsA(ptr) kernel32.FreeEnvironmentStringsA
|
||||
@ stdcall FreeEnvironmentStringsW(ptr) kernel32.FreeEnvironmentStringsW
|
||||
@ stdcall GetCommandLineA() kernel32.GetCommandLineA
|
||||
@ stdcall GetCommandLineW() kernel32.GetCommandLineW
|
||||
@ stdcall GetCurrentDirectoryA(long ptr) kernel32.GetCurrentDirectoryA
|
||||
@ stdcall GetCurrentDirectoryW(long ptr) kernel32.GetCurrentDirectoryW
|
||||
@ stdcall GetEnvironmentStrings() kernel32.GetEnvironmentStrings
|
||||
@ stdcall GetEnvironmentStringsW() kernel32.GetEnvironmentStringsW
|
||||
@ stdcall GetEnvironmentVariableA(str ptr long) kernel32.GetEnvironmentVariableA
|
||||
@ stdcall GetEnvironmentVariableW(wstr ptr long) kernel32.GetEnvironmentVariableW
|
||||
@ stdcall GetStdHandle(long) kernel32.GetStdHandle
|
||||
@ stdcall NeedCurrentDirectoryForExePathA(str) kernel32.NeedCurrentDirectoryForExePathA
|
||||
@ stdcall NeedCurrentDirectoryForExePathW(wstr) kernel32.NeedCurrentDirectoryForExePathW
|
||||
@ stdcall SearchPathA(str str str long ptr ptr) kernel32.SearchPathA
|
||||
@ stdcall SearchPathW(wstr wstr wstr long ptr ptr) kernel32.SearchPathW
|
||||
@ stdcall SetCurrentDirectoryA(str) kernel32.SetCurrentDirectoryA
|
||||
@ stdcall SetCurrentDirectoryW(wstr) kernel32.SetCurrentDirectoryW
|
||||
@ stub SetEnvironmentStringsW
|
||||
@ stdcall SetEnvironmentVariableA(str str) kernel32.SetEnvironmentVariableA
|
||||
@ stdcall SetEnvironmentVariableW(wstr wstr) kernel32.SetEnvironmentVariableW
|
||||
@ stdcall SetStdHandle(long long) kernel32.SetStdHandle
|
||||
@ stub SetStdHandleEx
|
|
@ -156,6 +156,7 @@ my @dll_groups =
|
|||
"api-ms-win-core-localization-obsolete-l1-1-0",
|
||||
"api-ms-win-core-memory-l1-1-1",
|
||||
"api-ms-win-core-namedpipe-l1-2-0",
|
||||
"api-ms-win-core-processenvironment-l1-2-0",
|
||||
],
|
||||
[
|
||||
"ole32",
|
||||
|
|
Loading…
Reference in New Issue