1 | /* $Id: vcc-fakes-shell32.cpp 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Tricks to make the Visual C++ 2010 CRT work on NT4, W2K and XP.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #define RT_NO_STRICT /* Minimal deps so that it works on NT 3.51 too. */
|
---|
42 | #include <iprt/types.h>
|
---|
43 | #include <iprt/assert.h>
|
---|
44 | #include <iprt/string.h>
|
---|
45 |
|
---|
46 | #ifndef RT_ARCH_X86
|
---|
47 | # error "This code is X86 only"
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | #define CommandLineToArgvW Ignore_CommandLineToArgvW
|
---|
51 |
|
---|
52 | #include <iprt/nt/nt-and-windows.h>
|
---|
53 |
|
---|
54 | #undef CommandLineToArgvW
|
---|
55 |
|
---|
56 |
|
---|
57 | /*********************************************************************************************************************************
|
---|
58 | * Defined Constants And Macros *
|
---|
59 | *********************************************************************************************************************************/
|
---|
60 | /** Dynamically resolves an kernel32 API. */
|
---|
61 | #define RESOLVE_ME(ApiNm) \
|
---|
62 | static decltype(ShellExecuteW) * volatile s_pfnInitialized = NULL; \
|
---|
63 | static decltype(ApiNm) *s_pfnApi = NULL; \
|
---|
64 | decltype(ApiNm) *pfnApi; \
|
---|
65 | if (s_pfnInitialized) \
|
---|
66 | pfnApi = s_pfnApi; \
|
---|
67 | else \
|
---|
68 | { \
|
---|
69 | pfnApi = (decltype(pfnApi))GetProcAddress(GetModuleHandleW(L"shell32"), #ApiNm); \
|
---|
70 | s_pfnApi = pfnApi; \
|
---|
71 | s_pfnInitialized = ShellExecuteW; /* ensures shell32 is loaded */ \
|
---|
72 | } do {} while (0)
|
---|
73 |
|
---|
74 |
|
---|
75 | /** Declare a shell32 API.
|
---|
76 | * @note We are not exporting them as that causes duplicate symbol troubles in
|
---|
77 | * the OpenGL bits. */
|
---|
78 | #define DECL_SHELL32(a_Type) extern "C" a_Type WINAPI
|
---|
79 |
|
---|
80 |
|
---|
81 | /*********************************************************************************************************************************
|
---|
82 | * Internal Functions *
|
---|
83 | *********************************************************************************************************************************/
|
---|
84 |
|
---|
85 |
|
---|
86 | DECL_SHELL32(LPWSTR *) CommandLineToArgvW(LPCWSTR pwszCmdLine, int *pcArgs)
|
---|
87 | {
|
---|
88 | RESOLVE_ME(CommandLineToArgvW);
|
---|
89 | if (pfnApi)
|
---|
90 | return pfnApi(pwszCmdLine, pcArgs);
|
---|
91 |
|
---|
92 | *pcArgs = 0;
|
---|
93 | return NULL;
|
---|
94 | }
|
---|
95 |
|
---|
96 |
|
---|
97 | /* Dummy to force dragging in this object in the link, so the linker
|
---|
98 | won't accidentally use the symbols from shell32. */
|
---|
99 | extern "C" int vcc100_shell32_fakes_cpp(void)
|
---|
100 | {
|
---|
101 | return 42;
|
---|
102 | }
|
---|
103 |
|
---|