Andrew Talbot : msi: Declare some functions static.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jan 12 13:55:17 CST 2007


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

Author: Andrew Talbot <Andrew.Talbot at talbotville.com>
Date:   Fri Jan 12 16:47:57 2007 +0000

msi: Declare some functions static.

---

 dlls/msi/action.c |    4 ++--
 dlls/msi/events.c |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index a90a81a..83ba416 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -1931,7 +1931,7 @@ static UINT ITERATE_CostFinalizeConditio
     return ERROR_SUCCESS;
 }
 
-LPWSTR msi_get_disk_file_version( LPCWSTR filename )
+static LPWSTR msi_get_disk_file_version( LPCWSTR filename )
 {
     static const WCHAR name_fmt[] =
         {'%','u','.','%','u','.','%','u','.','%','u',0};
@@ -3869,7 +3869,7 @@ static UINT ACTION_ForceReboot(MSIPACKAG
     return ERROR_INSTALL_SUSPEND;
 }
 
-UINT msi_set_sourcedir_props(MSIPACKAGE *package)
+static UINT msi_set_sourcedir_props(MSIPACKAGE *package)
 {
     LPWSTR p, source;
     DWORD len;
diff --git a/dlls/msi/events.c b/dlls/msi/events.c
index c946512..4ddab41 100644
--- a/dlls/msi/events.c
+++ b/dlls/msi/events.c
@@ -53,7 +53,7 @@ struct subscriber {
     LPWSTR attribute;
 };
 
-UINT ControlEvent_HandleControlEvent(MSIPACKAGE *, LPCWSTR, LPCWSTR, msi_dialog*);
+static UINT ControlEvent_HandleControlEvent(MSIPACKAGE *, LPCWSTR, LPCWSTR, msi_dialog*);
 static VOID ControlEvent_CleanupDialogSubscriptions(MSIPACKAGE *package, LPWSTR dialog);
 
 /*




More information about the wine-cvs mailing list