mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
11 lines
169 B
C++
11 lines
169 B
C++
#pragma once
|
|
|
|
namespace Magpie::Core {
|
|
|
|
struct WindowHelper {
|
|
static bool IsStartMenu(HWND hWnd) noexcept;
|
|
|
|
static bool IsValidSrcWindow(HWND hwndSrc) noexcept;
|
|
};
|
|
|
|
}
|