diff options
Diffstat (limited to 'src/api/burn/balutil/inc/IBAFunctions.h')
-rw-r--r-- | src/api/burn/balutil/inc/IBAFunctions.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/api/burn/balutil/inc/IBAFunctions.h b/src/api/burn/balutil/inc/IBAFunctions.h index d41b7c9b..63395e1e 100644 --- a/src/api/burn/balutil/inc/IBAFunctions.h +++ b/src/api/burn/balutil/inc/IBAFunctions.h | |||
@@ -39,4 +39,26 @@ DECLARE_INTERFACE_IID_(IBAFunctions, IBootstrapperApplication, "0FB445ED-17BD-49 | |||
39 | __inout BOOL* pfProcessed, | 39 | __inout BOOL* pfProcessed, |
40 | __inout WORD* pwId | 40 | __inout WORD* pwId |
41 | ) = 0; | 41 | ) = 0; |
42 | |||
43 | // OnThemeControlWmCommand - Called when WM_COMMAND is received for a control. | ||
44 | // | ||
45 | STDMETHOD(OnThemeControlWmCommand)( | ||
46 | __in WPARAM wParam, | ||
47 | __in LPCWSTR wzName, | ||
48 | __in WORD wId, | ||
49 | __in HWND hWnd, | ||
50 | __inout BOOL* pfProcessed, | ||
51 | __inout LRESULT* plResult | ||
52 | ) = 0; | ||
53 | |||
54 | // OnThemeControlWmNotify - Called when WM_NOTIFY is received for a control. | ||
55 | // | ||
56 | STDMETHOD(OnThemeControlWmNotify)( | ||
57 | __in LPNMHDR lParam, | ||
58 | __in LPCWSTR wzName, | ||
59 | __in WORD wId, | ||
60 | __in HWND hWnd, | ||
61 | __inout BOOL* pfProcessed, | ||
62 | __inout LRESULT* plResult | ||
63 | ) = 0; | ||
42 | }; | 64 | }; |