summaryrefslogtreecommitdiff
path: root/include/arch
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2019-12-23 13:00:21 +0000
committerIvan Zhakov <ivan@apache.org>2019-12-23 13:00:21 +0000
commita531221366785bbd8ed99e39fc36db1ced26f8ef (patch)
treecdbd2ab42ddff84752e6688d7452245e32b9f2ea /include/arch
parent1d70414ef32decfd37b256b18fe486370cd7cbc4 (diff)
downloadapr-a531221366785bbd8ed99e39fc36db1ced26f8ef.tar.gz
Follow-up to r1871082: Actually use api-ms-win-downlevel-shell32-l1-1-0.dll
API Set. * include/arch/win32/apr_arch_misc.h (CommandLineToArgvW): Use DLL_API_MS_WIN_DOWNLEVEL_SHELL32_L1_1_0 instead of DLL_SHSTDAPI. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1871926 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch')
-rw-r--r--include/arch/win32/apr_arch_misc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/arch/win32/apr_arch_misc.h b/include/arch/win32/apr_arch_misc.h
index 78f0dfa82..fbaceae06 100644
--- a/include/arch/win32/apr_arch_misc.h
+++ b/include/arch/win32/apr_arch_misc.h
@@ -311,10 +311,10 @@ APR_DECLARE_LATE_DLL_FUNC(DLL_IPHLPAPI, PCHAR, NETIOAPI_API_, if_indextoname, 0,
(InterfaceIndex, InterfaceName));
#define if_indextoname apr_winapi_if_indextoname
-APR_DECLARE_LATE_DLL_FUNC(DLL_SHSTDAPI, LPWSTR *, STDAPICALLTYPE, CommandLineToArgvW, 0, (
- LPCWSTR lpCmdLine,
- int *pNumArgs),
- (lpCmdLine, pNumArgs));
+APR_DECLARE_LATE_DLL_FUNC(DLL_API_MS_WIN_DOWNLEVEL_SHELL32_L1_1_0, LPWSTR *,
+ STDAPICALLTYPE, CommandLineToArgvW, 0,
+ (LPCWSTR lpCmdLine, int *pNumArgs),
+ (lpCmdLine, pNumArgs));
#endif /* !defined(_WIN32_WCE) */