aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/balutil/inc/IBAFunctions.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-10-27 15:29:47 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-11-01 16:34:09 -0500
commit3d73efba15565f5995a492e660dff72286e0b672 (patch)
treefc2364f88aed27d0bdf633f837c5b9ac29511760 /src/api/burn/balutil/inc/IBAFunctions.h
parentdce1c97c7d3e76c18e4f80d4ffe288d2933a74bc (diff)
downloadwix-3d73efba15565f5995a492e660dff72286e0b672.tar.gz
wix-3d73efba15565f5995a492e660dff72286e0b672.tar.bz2
wix-3d73efba15565f5995a492e660dff72286e0b672.zip
Remove dutil types from BAFunctions.
Diffstat (limited to 'src/api/burn/balutil/inc/IBAFunctions.h')
-rw-r--r--src/api/burn/balutil/inc/IBAFunctions.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/api/burn/balutil/inc/IBAFunctions.h b/src/api/burn/balutil/inc/IBAFunctions.h
index 2e71608d..50126ba1 100644
--- a/src/api/burn/balutil/inc/IBAFunctions.h
+++ b/src/api/burn/balutil/inc/IBAFunctions.h
@@ -7,20 +7,18 @@ DECLARE_INTERFACE_IID_(IBAFunctions, IBootstrapperApplication, "0FB445ED-17BD-49
7 // OnThemeLoaded - Called after the BA finished loading all the controls for the theme. 7 // OnThemeLoaded - Called after the BA finished loading all the controls for the theme.
8 // 8 //
9 STDMETHOD(OnThemeLoaded)( 9 STDMETHOD(OnThemeLoaded)(
10 THEME* pTheme, 10 __in HWND hWnd
11 WIX_LOCALIZATION* pWixLoc
12 ) = 0; 11 ) = 0;
13 12
14 // WndProc - Called if the BA hasn't handled the message. 13 // 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 // 14 //
17 STDMETHOD(WndProc)( 15 STDMETHOD(WndProc)(
18 __in THEME* pTheme,
19 __in HWND hWnd, 16 __in HWND hWnd,
20 __in UINT uMsg, 17 __in UINT uMsg,
21 __in WPARAM wParam, 18 __in WPARAM wParam,
22 __in LPARAM lParam, 19 __in LPARAM lParam,
23 __inout LRESULT* plRes 20 __inout BOOL* pfProcessed,
21 __inout LRESULT* plResult
24 ) = 0; 22 ) = 0;
25 23
26 // BAFunctionsProc - The PFN_BA_FUNCTIONS_PROC can call this method to give the BAFunctions raw access to the callback from WixStdBA. 24 // BAFunctionsProc - The PFN_BA_FUNCTIONS_PROC can call this method to give the BAFunctions raw access to the callback from WixStdBA.