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

This commit is contained in:
Andrew Talbot 2007-03-05 18:58:55 +00:00 committed by Alexandre Julliard
parent 26390a47c7
commit 7a9b2183d4
1 changed files with 2 additions and 2 deletions

View File

@ -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 )
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;