From 7a9b2183d4f17a825421d510773d583f60f4f648 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 5 Mar 2007 18:58:55 +0000 Subject: [PATCH] msi: Replace const pointer parameters with correct pointers to const. --- dlls/msi/custom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c index fc86691ffbb..1e3a866ed7a 100644 --- a/dlls/msi/custom.c +++ b/dlls/msi/custom.c @@ -457,7 +457,7 @@ static UINT wait_thread_handle( msi_custom_action_info *info ) return rc; } -static msi_custom_action_info *find_action_by_guid( const LPGUID guid ) +static msi_custom_action_info *find_action_by_guid( const GUID *guid ) { msi_custom_action_info *info; BOOL found = FALSE; @@ -481,7 +481,7 @@ static msi_custom_action_info *find_action_by_guid( const LPGUID guid ) return info; } -static DWORD WINAPI ACTION_CallDllFunction( const LPGUID guid ) +static DWORD WINAPI ACTION_CallDllFunction( const GUID *guid ) { msi_custom_action_info *info; MsiCustomActionEntryPoint fn;