summaryrefslogtreecommitdiff
path: root/src/api/burn/balutil/inc/IBAFunctions.h
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-22 05:46:03 -0700
committerRob Mensching <rob@firegiant.com>2021-04-29 16:41:44 -0700
commitc00516901e6b67e398396b14fe7682d0376f8643 (patch)
treeb0d62089a1c5700c7f2c3e3790750bf2d8ea33c0 /src/api/burn/balutil/inc/IBAFunctions.h
parent8eb98efd2175d9ece2e4639d43081667af9a4990 (diff)
downloadwix-c00516901e6b67e398396b14fe7682d0376f8643.tar.gz
wix-c00516901e6b67e398396b14fe7682d0376f8643.tar.bz2
wix-c00516901e6b67e398396b14fe7682d0376f8643.zip
Move balutil into API/burn
Diffstat (limited to 'src/api/burn/balutil/inc/IBAFunctions.h')
-rw-r--r--src/api/burn/balutil/inc/IBAFunctions.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/api/burn/balutil/inc/IBAFunctions.h b/src/api/burn/balutil/inc/IBAFunctions.h
new file mode 100644
index 00000000..7d8a07fa
--- /dev/null
+++ b/src/api/burn/balutil/inc/IBAFunctions.h
@@ -0,0 +1,34 @@
1#pragma once
2// 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.
3
4
5DECLARE_INTERFACE_IID_(IBAFunctions, IBootstrapperApplication, "0FB445ED-17BD-49C7-BE19-479776F8AE96")
6{
7 // OnThemeLoaded - Called after the BA finished loading all the controls for the theme.
8 //
9 STDMETHOD(OnThemeLoaded)(
10 THEME* pTheme,
11 WIX_LOCALIZATION* pWixLoc
12 ) = 0;
13
14 // WndProc - Called if the BA hasn't handled the message.
15 // The implementation must either return E_NOTIMPL or call ThemeDefWindowProc for unhandled messages.
16 //
17 STDMETHOD(WndProc)(
18 __in THEME* pTheme,
19 __in HWND hWnd,
20 __in UINT uMsg,
21 __in WPARAM wParam,
22 __in LPARAM lParam,
23 __inout LRESULT* plRes
24 ) = 0;
25
26 // BAFunctionsProc - The PFN_BA_FUNCTIONS_PROC can call this method to give the BAFunctions raw access to the callback from WixStdBA.
27 // This might be used to help the BAFunctions support more than one version of the engine/WixStdBA.
28 STDMETHOD(BAFunctionsProc)(
29 __in BA_FUNCTIONS_MESSAGE message,
30 __in const LPVOID pvArgs,
31 __inout LPVOID pvResults,
32 __in_opt LPVOID pvContext
33 ) = 0;
34};