diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-10-27 13:55:16 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-11-01 16:34:09 -0500 |
commit | 8fa040da9d0d3826f5ffda6bcbec4f53abd97452 (patch) | |
tree | a8a1094f3ac17bd6feed8a6f971c0d6008694345 /src/api/burn/balutil/inc/IBAFunctions.h | |
parent | 4917383e6f52f0e44f63c60a645f1dd7e8f8d5f9 (diff) | |
download | wix-8fa040da9d0d3826f5ffda6bcbec4f53abd97452.tar.gz wix-8fa040da9d0d3826f5ffda6bcbec4f53abd97452.tar.bz2 wix-8fa040da9d0d3826f5ffda6bcbec4f53abd97452.zip |
Allow more customization of control ids in thmutil.
Allow BAFunctions to set control ids.
Make sure control ids don't collide.
Diffstat (limited to 'src/api/burn/balutil/inc/IBAFunctions.h')
-rw-r--r-- | src/api/burn/balutil/inc/IBAFunctions.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/api/burn/balutil/inc/IBAFunctions.h b/src/api/burn/balutil/inc/IBAFunctions.h index 7d8a07fa..d41b7c9b 100644 --- a/src/api/burn/balutil/inc/IBAFunctions.h +++ b/src/api/burn/balutil/inc/IBAFunctions.h | |||
@@ -31,4 +31,12 @@ DECLARE_INTERFACE_IID_(IBAFunctions, IBootstrapperApplication, "0FB445ED-17BD-49 | |||
31 | __inout LPVOID pvResults, | 31 | __inout LPVOID pvResults, |
32 | __in_opt LPVOID pvContext | 32 | __in_opt LPVOID pvContext |
33 | ) = 0; | 33 | ) = 0; |
34 | |||
35 | // OnThemeControlLoading - Called while creating a control for the theme. | ||
36 | // | ||
37 | STDMETHOD(OnThemeControlLoading)( | ||
38 | __in LPCWSTR wzName, | ||
39 | __inout BOOL* pfProcessed, | ||
40 | __inout WORD* pwId | ||
41 | ) = 0; | ||
34 | }; | 42 | }; |