diff options
Diffstat (limited to 'src/api/burn/balutil/inc/IBAFunctions.h')
-rw-r--r-- | src/api/burn/balutil/inc/IBAFunctions.h | 8 |
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. |