msi/tests: Make the handler_xxx() functions static.
Also remove extraneous semi-colons.
This commit is contained in:
parent
bef35afba8
commit
97619affe5
@ -6874,9 +6874,20 @@ static void test_file_in_use_cab(void)
|
|||||||
delete_test_files();
|
delete_test_files();
|
||||||
}
|
}
|
||||||
|
|
||||||
INT CALLBACK handler_a(LPVOID context, UINT type, LPCSTR msg) { return IDOK; };
|
static INT CALLBACK handler_a(LPVOID context, UINT type, LPCSTR msg)
|
||||||
INT CALLBACK handler_w(LPVOID context, UINT type, LPCWSTR msg) { return IDOK; };
|
{
|
||||||
INT CALLBACK handler_record(LPVOID context, UINT type, MSIHANDLE record) { return IDOK; };
|
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)
|
static void test_MsiSetExternalUI(void)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user