msi: Declare some functions static.

This commit is contained in:
Andrew Talbot 2007-01-12 16:47:57 +00:00 committed by Alexandre Julliard
parent e5938d6fbb
commit 020bda7ee2
2 changed files with 3 additions and 3 deletions

View File

@ -1931,7 +1931,7 @@ static UINT ITERATE_CostFinalizeConditions(MSIRECORD *row, LPVOID param)
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(MSIPACKAGE *package)
return ERROR_INSTALL_SUSPEND;
}
UINT msi_set_sourcedir_props(MSIPACKAGE *package)
static UINT msi_set_sourcedir_props(MSIPACKAGE *package)
{
LPWSTR p, source;
DWORD len;

View File

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