[KERNEL32_APITEST] s/QueryUserAPC/QueueUseAPC/

This commit is contained in:
Katayama Hirofumi MZ 2020-05-02 14:58:48 +09:00
parent fb1582d330
commit 633770ab0d
3 changed files with 5 additions and 5 deletions

View file

@ -27,7 +27,7 @@ list(APPEND SOURCE
Mailslot.c
MultiByteToWideChar.c
PrivMoveFileIdentityW.c
QueryUserAPC.c
QueueUserAPC.c
SetComputerNameExW.c
SetConsoleWindowInfo.c
SetCurrentDirectory.c

View file

@ -1,7 +1,7 @@
/*
* PROJECT: ReactOS api tests
* LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
* PURPOSE: Tests for QueryUserAPC, SleepEx, WaitForSingleObjectEx etc.
* PURPOSE: Tests for QueueUserAPC, SleepEx, WaitForSingleObjectEx etc.
* COPYRIGHT: Copyright 2020 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
*/
#include "precomp.h"
@ -145,7 +145,7 @@ static void TestForWaitForSingleObjectEx(void)
JustDoIt(ThreadFunc2);
}
START_TEST(QueryUserAPC)
START_TEST(QueueUserAPC)
{
TestForSleepEx();
TestForWaitForSingleObjectEx();

View file

@ -26,7 +26,7 @@ extern void func_lstrlen(void);
extern void func_Mailslot(void);
extern void func_MultiByteToWideChar(void);
extern void func_PrivMoveFileIdentityW(void);
extern void func_QueryUserAPC(void);
extern void func_QueueUserAPC(void);
extern void func_SetComputerNameExW(void);
extern void func_SetConsoleWindowInfo(void);
extern void func_SetCurrentDirectory(void);
@ -61,7 +61,7 @@ const struct test winetest_testlist[] =
{ "MailslotRead", func_Mailslot },
{ "MultiByteToWideChar", func_MultiByteToWideChar },
{ "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW },
{ "QueryUserAPC", func_QueryUserAPC },
{ "QueueUserAPC", func_QueueUserAPC },
{ "SetComputerNameExW", func_SetComputerNameExW },
{ "SetConsoleWindowInfo", func_SetConsoleWindowInfo },
{ "SetCurrentDirectory", func_SetCurrentDirectory },