msvcr90/tests: Fix the calling convention of the initterm callbacks.

This commit is contained in:
Alexandre Julliard 2010-04-07 14:25:32 +02:00
parent da840f57e5
commit 701dd23911
1 changed files with 3 additions and 3 deletions

View File

@ -55,19 +55,19 @@ void __cdecl test_invalid_parameter_handler(const wchar_t *expression,
ok(res == NULL, "res = %p\n", res); ok(res == NULL, "res = %p\n", res);
} }
static int initterm_cb0(void) static int __cdecl initterm_cb0(void)
{ {
cb_called[0]++; cb_called[0]++;
return 0; return 0;
} }
static int initterm_cb1(void) static int __cdecl initterm_cb1(void)
{ {
cb_called[1]++; cb_called[1]++;
return 1; return 1;
} }
static int initterm_cb2(void) static int __cdecl initterm_cb2(void)
{ {
cb_called[2]++; cb_called[2]++;
return 2; return 2;