1 | /* $Id: nocrt-startup-common-win.cpp 95870 2022-07-27 02:38:01Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - No-CRT - Common Windows startup code.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include "internal/iprt.h"
|
---|
32 | #include "internal/process.h"
|
---|
33 |
|
---|
34 | #include <iprt/nt/nt-and-windows.h>
|
---|
35 | #include <iprt/getopt.h>
|
---|
36 | #include <iprt/message.h>
|
---|
37 | #include <iprt/path.h>
|
---|
38 | #include <iprt/string.h>
|
---|
39 | #include <iprt/utf16.h>
|
---|
40 |
|
---|
41 | #include "internal/compiler-vcc.h"
|
---|
42 |
|
---|
43 |
|
---|
44 | /*********************************************************************************************************************************
|
---|
45 | * Global Variables *
|
---|
46 | *********************************************************************************************************************************/
|
---|
47 | RT_C_DECLS_BEGIN
|
---|
48 | DECL_HIDDEN_DATA(char) g_szrtProcExePath[RTPATH_MAX] = "Unknown.exe";
|
---|
49 | DECL_HIDDEN_DATA(size_t) g_cchrtProcExePath = 11;
|
---|
50 | DECL_HIDDEN_DATA(size_t) g_cchrtProcExeDir = 0;
|
---|
51 | DECL_HIDDEN_DATA(size_t) g_offrtProcName = 0;
|
---|
52 | RT_C_DECLS_END
|
---|
53 |
|
---|
54 |
|
---|
55 |
|
---|
56 | void rtVccWinInitProcExecPath(void)
|
---|
57 | {
|
---|
58 | WCHAR wszPath[RTPATH_MAX];
|
---|
59 | UINT cwcPath = GetModuleFileNameW(NULL, wszPath, RT_ELEMENTS(wszPath));
|
---|
60 | if (cwcPath)
|
---|
61 | {
|
---|
62 | char *pszDst = g_szrtProcExePath;
|
---|
63 | int rc = RTUtf16ToUtf8Ex(wszPath, cwcPath, &pszDst, sizeof(g_szrtProcExePath), &g_cchrtProcExePath);
|
---|
64 | if (RT_SUCCESS(rc))
|
---|
65 | {
|
---|
66 | g_cchrtProcExeDir = g_offrtProcName = RTPathFilename(pszDst) - g_szrtProcExePath;
|
---|
67 | while ( g_cchrtProcExeDir >= 2
|
---|
68 | && RTPATH_IS_SLASH(g_szrtProcExePath[g_cchrtProcExeDir - 1])
|
---|
69 | && g_szrtProcExePath[g_cchrtProcExeDir - 2] != ':')
|
---|
70 | g_cchrtProcExeDir--;
|
---|
71 | }
|
---|
72 | else
|
---|
73 | RTMsgError("initProcExecPath: RTUtf16ToUtf8Ex failed: %Rrc\n", rc);
|
---|
74 | }
|
---|
75 | else
|
---|
76 | RTMsgError("initProcExecPath: GetModuleFileNameW failed: %Rhrc\n", GetLastError());
|
---|
77 | }
|
---|
78 |
|
---|