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

Alexandre Julliard julliard at wine.codeweavers.com
Tue Mar 6 06:03:56 CST 2007


Module: wine
Branch: master
Commit: 7a9b2183d4f17a825421d510773d583f60f4f648
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7a9b2183d4f17a825421d510773d583f60f4f648

Author: Andrew Talbot <Andrew.Talbot at talbotville.com>
Date:   Mon Mar  5 18:58:55 2007 +0000

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

---

 dlls/msi/custom.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c
index fc86691..1e3a866 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;




More information about the wine-cvs mailing list