ReactOS 0.4.16-dev-942-g91fadeb
ShellExec_RunDLL.cpp
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS API tests
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: Test for ShellExec_RunDLL
5 * COPYRIGHT: Copyright 2025 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6 */
7
8#include "shelltest.h"
9#include "closewnd.h"
10#include <undocshell.h>
11
13
15{
16 ShellExec_RunDLL(NULL, NULL, "?0?notepad.exe", SW_SHOWNORMAL);
17}
18
20{
21 ShellExec_RunDLLA(NULL, NULL, "?0?notepad.exe", SW_SHOWNORMAL);
22}
23
25{
26 ShellExec_RunDLLW(NULL, NULL, L"?0?notepad.exe", SW_SHOWNORMAL);
27}
28
30{
35}
36
38{
39 HWND hwndNotepad;
40
43 Sleep(1000);
44 hwndNotepad = FindWindowW(L"Notepad", NULL);
45 ok(hwndNotepad != NULL, "Notepad not found\n");
47
50 Sleep(1000);
51 hwndNotepad = FindWindowW(L"Notepad", NULL);
52 ok(hwndNotepad != NULL, "Notepad not found\n");
54
57 Sleep(1000);
58 hwndNotepad = FindWindowW(L"Notepad", NULL);
59 ok(hwndNotepad != NULL, "Notepad not found\n");
61}
static VOID TEST_ShellExec_RunDLLW(VOID)
static WINDOW_LIST s_List2
static VOID TEST_ShellExec_RunDLL(VOID)
static VOID CleanupWindowList(VOID)
static WINDOW_LIST s_List1
static VOID TEST_ShellExec_RunDLLA(VOID)
#define ok(value,...)
Definition: atltest.h:57
#define START_TEST(x)
Definition: atltest.h:75
void CloseNewWindows(PWINDOW_LIST List1, PWINDOW_LIST List2)
Definition: closewnd.cpp:101
void GetWindowList(PWINDOW_LIST pList)
Definition: closewnd.cpp:33
void GetWindowListForClose(PWINDOW_LIST pList)
Definition: closewnd.cpp:40
void FreeWindowList(PWINDOW_LIST pList)
Definition: closewnd.cpp:11
#define NULL
Definition: types.h:112
#define L(x)
Definition: ntvdm.h:50
EXTERN_C VOID WINAPI ShellExec_RunDLLW(_In_opt_ HWND hwnd, _In_opt_ HINSTANCE hInstance, _In_ PCWSTR pszCmdLine, _In_ INT nCmdShow)
Definition: shlexec.cpp:3177
EXTERN_C VOID WINAPI ShellExec_RunDLLA(_In_opt_ HWND hwnd, _In_opt_ HINSTANCE hInstance, _In_ PCSTR pszCmdLine, _In_ INT nCmdShow)
Definition: shlexec.cpp:3160
VOID WINAPI DECLSPEC_HOTPATCH Sleep(IN DWORD dwMilliseconds)
Definition: synch.c:790
VOID WINAPI ShellExec_RunDLL(_In_opt_ HWND hwnd, _In_opt_ HINSTANCE hInstance, _In_ PCSTR pszCmdLine, _In_ INT nCmdShow)
#define SW_SHOWNORMAL
Definition: winuser.h:773
HWND WINAPI FindWindowW(_In_opt_ LPCWSTR, _In_opt_ LPCWSTR)