Magpie/src/Magpie.Core/WindowHelper.h

11 lines
169 B
C++

#pragma once
namespace Magpie::Core {
struct WindowHelper {
static bool IsStartMenu(HWND hWnd) noexcept;
static bool IsValidSrcWindow(HWND hwndSrc) noexcept;
};
}