1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#include "precomp.h"
static void CALLBACK WixstdbaTraceError(
__in_z LPCSTR szFile,
__in int iLine,
__in REPORT_LEVEL rl,
__in UINT source,
__in HRESULT hrError,
__in_z __format_string LPCSTR szFormat,
__in va_list args
);
EXTERN_C int WINAPI wWinMain(
__in HINSTANCE hInstance,
__in_opt HINSTANCE /* hPrevInstance */,
__in_z_opt LPWSTR /*lpCmdLine*/,
__in int /*nCmdShow*/
)
{
HRESULT hr = S_OK;
IBootstrapperApplication* pApplication = NULL;
DutilInitialize(&WixstdbaTraceError);
hr = CreateWixStandardBootstrapperApplication(hInstance, &pApplication);
ExitOnFailure(hr, "Failed to create WiX standard bootstrapper application.");
hr = BootstrapperApplicationRun(pApplication);
ExitOnFailure(hr, "Failed to run WiX standard bootstrapper application.");
LExit:
ReleaseObject(pApplication);
return 0;
}
static void CALLBACK WixstdbaTraceError(
__in_z LPCSTR /*szFile*/,
__in int /*iLine*/,
__in REPORT_LEVEL /*rl*/,
__in UINT source,
__in HRESULT hrError,
__in_z __format_string LPCSTR szFormat,
__in va_list args
)
{
// BalLogError currently uses the Exit... macros,
// so if expanding the scope need to ensure this doesn't get called recursively.
if (DUTIL_SOURCE_THMUTIL == source)
{
BalLogErrorArgs(hrError, szFormat, args);
}
}
|