diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-10-27 15:29:19 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-11-01 16:34:09 -0500 |
commit | dce1c97c7d3e76c18e4f80d4ffe288d2933a74bc (patch) | |
tree | 68dc0653ee1a6fe962d82dac2159c8ab00a95808 /src/api/burn/balutil/inc/IBAFunctions.h | |
parent | bad2e93524f376cfeb76d5231d4b08510bdad033 (diff) | |
download | wix-dce1c97c7d3e76c18e4f80d4ffe288d2933a74bc.tar.gz wix-dce1c97c7d3e76c18e4f80d4ffe288d2933a74bc.tar.bz2 wix-dce1c97c7d3e76c18e4f80d4ffe288d2933a74bc.zip |
Make thmutil automatically load controls during window creation.
Add control loaded event.
Diffstat (limited to 'src/api/burn/balutil/inc/IBAFunctions.h')
-rw-r--r-- | src/api/burn/balutil/inc/IBAFunctions.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/api/burn/balutil/inc/IBAFunctions.h b/src/api/burn/balutil/inc/IBAFunctions.h index 63395e1e..2e71608d 100644 --- a/src/api/burn/balutil/inc/IBAFunctions.h +++ b/src/api/burn/balutil/inc/IBAFunctions.h | |||
@@ -61,4 +61,13 @@ DECLARE_INTERFACE_IID_(IBAFunctions, IBootstrapperApplication, "0FB445ED-17BD-49 | |||
61 | __inout BOOL* pfProcessed, | 61 | __inout BOOL* pfProcessed, |
62 | __inout LRESULT* plResult | 62 | __inout LRESULT* plResult |
63 | ) = 0; | 63 | ) = 0; |
64 | |||
65 | // OnThemeControlLoaded - Called after a control was created for the theme. | ||
66 | // | ||
67 | STDMETHOD(OnThemeControlLoaded)( | ||
68 | __in LPCWSTR wzName, | ||
69 | __in WORD wId, | ||
70 | __in HWND hWnd, | ||
71 | __inout BOOL* pfProcessed | ||
72 | ) = 0; | ||
64 | }; | 73 | }; |