msi/tests: Make the handler_xxx() functions static.

Also remove extraneous semi-colons.
This commit is contained in:
Francois Gouget 2009-11-08 10:52:58 +01:00 committed by Alexandre Julliard
parent bef35afba8
commit 97619affe5
1 changed files with 14 additions and 3 deletions

View File

@ -6874,9 +6874,20 @@ static void test_file_in_use_cab(void)
delete_test_files();
}
INT CALLBACK handler_a(LPVOID context, UINT type, LPCSTR msg) { return IDOK; };
INT CALLBACK handler_w(LPVOID context, UINT type, LPCWSTR msg) { return IDOK; };
INT CALLBACK handler_record(LPVOID context, UINT type, MSIHANDLE record) { return IDOK; };
static INT CALLBACK handler_a(LPVOID context, UINT type, LPCSTR msg)
{
return IDOK;
}
static INT CALLBACK handler_w(LPVOID context, UINT type, LPCWSTR msg)
{
return IDOK;
}
static INT CALLBACK handler_record(LPVOID context, UINT type, MSIHANDLE record)
{
return IDOK;
}
static void test_MsiSetExternalUI(void)
{