Commit 020bda7e authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msi: Declare some functions static.

parent e5938d6f
...@@ -1931,7 +1931,7 @@ static UINT ITERATE_CostFinalizeConditions(MSIRECORD *row, LPVOID param) ...@@ -1931,7 +1931,7 @@ static UINT ITERATE_CostFinalizeConditions(MSIRECORD *row, LPVOID param)
return ERROR_SUCCESS; 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[] = static const WCHAR name_fmt[] =
{'%','u','.','%','u','.','%','u','.','%','u',0}; {'%','u','.','%','u','.','%','u','.','%','u',0};
...@@ -3869,7 +3869,7 @@ static UINT ACTION_ForceReboot(MSIPACKAGE *package) ...@@ -3869,7 +3869,7 @@ static UINT ACTION_ForceReboot(MSIPACKAGE *package)
return ERROR_INSTALL_SUSPEND; return ERROR_INSTALL_SUSPEND;
} }
UINT msi_set_sourcedir_props(MSIPACKAGE *package) static UINT msi_set_sourcedir_props(MSIPACKAGE *package)
{ {
LPWSTR p, source; LPWSTR p, source;
DWORD len; DWORD len;
......
...@@ -53,7 +53,7 @@ struct subscriber { ...@@ -53,7 +53,7 @@ struct subscriber {
LPWSTR attribute; 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); static VOID ControlEvent_CleanupDialogSubscriptions(MSIPACKAGE *package, LPWSTR dialog);
/* /*
......
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