mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[KERNEL32_APITEST] s/QueryUserAPC/QueueUseAPC/
This commit is contained in:
parent
fb1582d330
commit
633770ab0d
3 changed files with 5 additions and 5 deletions
|
@ -27,7 +27,7 @@ list(APPEND SOURCE
|
||||||
Mailslot.c
|
Mailslot.c
|
||||||
MultiByteToWideChar.c
|
MultiByteToWideChar.c
|
||||||
PrivMoveFileIdentityW.c
|
PrivMoveFileIdentityW.c
|
||||||
QueryUserAPC.c
|
QueueUserAPC.c
|
||||||
SetComputerNameExW.c
|
SetComputerNameExW.c
|
||||||
SetConsoleWindowInfo.c
|
SetConsoleWindowInfo.c
|
||||||
SetCurrentDirectory.c
|
SetCurrentDirectory.c
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* PROJECT: ReactOS api tests
|
* PROJECT: ReactOS api tests
|
||||||
* LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
|
* 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)
|
* COPYRIGHT: Copyright 2020 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
||||||
*/
|
*/
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
@ -145,7 +145,7 @@ static void TestForWaitForSingleObjectEx(void)
|
||||||
JustDoIt(ThreadFunc2);
|
JustDoIt(ThreadFunc2);
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST(QueryUserAPC)
|
START_TEST(QueueUserAPC)
|
||||||
{
|
{
|
||||||
TestForSleepEx();
|
TestForSleepEx();
|
||||||
TestForWaitForSingleObjectEx();
|
TestForWaitForSingleObjectEx();
|
|
@ -26,7 +26,7 @@ extern void func_lstrlen(void);
|
||||||
extern void func_Mailslot(void);
|
extern void func_Mailslot(void);
|
||||||
extern void func_MultiByteToWideChar(void);
|
extern void func_MultiByteToWideChar(void);
|
||||||
extern void func_PrivMoveFileIdentityW(void);
|
extern void func_PrivMoveFileIdentityW(void);
|
||||||
extern void func_QueryUserAPC(void);
|
extern void func_QueueUserAPC(void);
|
||||||
extern void func_SetComputerNameExW(void);
|
extern void func_SetComputerNameExW(void);
|
||||||
extern void func_SetConsoleWindowInfo(void);
|
extern void func_SetConsoleWindowInfo(void);
|
||||||
extern void func_SetCurrentDirectory(void);
|
extern void func_SetCurrentDirectory(void);
|
||||||
|
@ -61,7 +61,7 @@ const struct test winetest_testlist[] =
|
||||||
{ "MailslotRead", func_Mailslot },
|
{ "MailslotRead", func_Mailslot },
|
||||||
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
||||||
{ "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW },
|
{ "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW },
|
||||||
{ "QueryUserAPC", func_QueryUserAPC },
|
{ "QueueUserAPC", func_QueueUserAPC },
|
||||||
{ "SetComputerNameExW", func_SetComputerNameExW },
|
{ "SetComputerNameExW", func_SetComputerNameExW },
|
||||||
{ "SetConsoleWindowInfo", func_SetConsoleWindowInfo },
|
{ "SetConsoleWindowInfo", func_SetConsoleWindowInfo },
|
||||||
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
||||||
|
|
Loading…
Reference in a new issue