From 3d73efba15565f5995a492e660dff72286e0b672 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 27 Oct 2021 15:29:47 -0500 Subject: Remove dutil types from BAFunctions. --- src/api/burn/balutil/inc/IBAFunctions.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/api/burn/balutil/inc/IBAFunctions.h') 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 // OnThemeLoaded - Called after the BA finished loading all the controls for the theme. // STDMETHOD(OnThemeLoaded)( - THEME* pTheme, - WIX_LOCALIZATION* pWixLoc + __in HWND hWnd ) = 0; // WndProc - Called if the BA hasn't handled the message. - // The implementation must either return E_NOTIMPL or call ThemeDefWindowProc for unhandled messages. // STDMETHOD(WndProc)( - __in THEME* pTheme, __in HWND hWnd, __in UINT uMsg, __in WPARAM wParam, __in LPARAM lParam, - __inout LRESULT* plRes + __inout BOOL* pfProcessed, + __inout LRESULT* plResult ) = 0; // BAFunctionsProc - The PFN_BA_FUNCTIONS_PROC can call this method to give the BAFunctions raw access to the callback from WixStdBA. -- cgit v1.2.3-55-g6feb