mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
436cfa94c9
Follow-up to #5849. JIRA issue: CORE-19278 - Add closewnd.cpp, closewnd.h, and RealShellExecuteEx.cpp files. - In closewnd.cpp, close newly-opened windows. - Add RealShellExecuteEx testcase.
19 lines
549 B
C
19 lines
549 B
C
/*
|
|
* PROJECT: ReactOS API tests
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Close windows after tests
|
|
* COPYRIGHT: Copyright 2024 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
typedef struct WINDOW_LIST
|
|
{
|
|
SIZE_T m_chWnds;
|
|
HWND *m_phWnds;
|
|
} WINDOW_LIST, *PWINDOW_LIST;
|
|
|
|
void GetWindowList(PWINDOW_LIST pList);
|
|
HWND FindNewWindow(PWINDOW_LIST List1, PWINDOW_LIST List2);
|
|
void CloseNewWindows(PWINDOW_LIST List1, PWINDOW_LIST List2);
|
|
void FreeWindowList(PWINDOW_LIST pList);
|