diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-10-27 15:29:47 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-11-01 16:34:09 -0500 |
commit | 3d73efba15565f5995a492e660dff72286e0b672 (patch) | |
tree | fc2364f88aed27d0bdf633f837c5b9ac29511760 /src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h | |
parent | dce1c97c7d3e76c18e4f80d4ffe288d2933a74bc (diff) | |
download | wix-3d73efba15565f5995a492e660dff72286e0b672.tar.gz wix-3d73efba15565f5995a492e660dff72286e0b672.tar.bz2 wix-3d73efba15565f5995a492e660dff72286e0b672.zip |
Remove dutil types from BAFunctions.
Diffstat (limited to 'src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h')
-rw-r--r-- | src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h b/src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h index 2af231e8..135f7c76 100644 --- a/src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h +++ b/src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h | |||
@@ -12,7 +12,7 @@ static HRESULT BalBaseBAFunctionsProcOnThemeLoaded( | |||
12 | __inout BA_FUNCTIONS_ONTHEMELOADED_RESULTS* /*pResults*/ | 12 | __inout BA_FUNCTIONS_ONTHEMELOADED_RESULTS* /*pResults*/ |
13 | ) | 13 | ) |
14 | { | 14 | { |
15 | return pBAFunctions->OnThemeLoaded(pArgs->pTheme, pArgs->pWixLoc); | 15 | return pBAFunctions->OnThemeLoaded(pArgs->hWnd); |
16 | } | 16 | } |
17 | 17 | ||
18 | static HRESULT BalBaseBAFunctionsProcWndProc( | 18 | static HRESULT BalBaseBAFunctionsProcWndProc( |
@@ -21,7 +21,7 @@ static HRESULT BalBaseBAFunctionsProcWndProc( | |||
21 | __inout BA_FUNCTIONS_WNDPROC_RESULTS* pResults | 21 | __inout BA_FUNCTIONS_WNDPROC_RESULTS* pResults |
22 | ) | 22 | ) |
23 | { | 23 | { |
24 | return pBAFunctions->WndProc(pArgs->pTheme, pArgs->hWnd, pArgs->uMsg, pArgs->wParam, pArgs->lParam, &pResults->lres); | 24 | return pBAFunctions->WndProc(pArgs->hWnd, pArgs->uMsg, pArgs->wParam, pArgs->lParam, &pResults->fProcessed, &pResults->lResult); |
25 | } | 25 | } |
26 | 26 | ||
27 | static HRESULT BalBaseBAFunctionsProcOnThemeControlLoading( | 27 | static HRESULT BalBaseBAFunctionsProcOnThemeControlLoading( |