Commit 7a9b2183 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msi: Replace const pointer parameters with correct pointers to const.

parent 26390a47
...@@ -457,7 +457,7 @@ static UINT wait_thread_handle( msi_custom_action_info *info ) ...@@ -457,7 +457,7 @@ static UINT wait_thread_handle( msi_custom_action_info *info )
return rc; 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; msi_custom_action_info *info;
BOOL found = FALSE; BOOL found = FALSE;
...@@ -481,7 +481,7 @@ static msi_custom_action_info *find_action_by_guid( const LPGUID guid ) ...@@ -481,7 +481,7 @@ static msi_custom_action_info *find_action_by_guid( const LPGUID guid )
return info; return info;
} }
static DWORD WINAPI ACTION_CallDllFunction( const LPGUID guid ) static DWORD WINAPI ACTION_CallDllFunction( const GUID *guid )
{ {
msi_custom_action_info *info; msi_custom_action_info *info;
MsiCustomActionEntryPoint fn; MsiCustomActionEntryPoint fn;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment