Files
WickedEngine/WickedEngine/wiWindowRegistration.h
T
2018-11-01 19:15:32 +00:00

16 lines
295 B
C++

#pragma once
#include "CommonInclude.h"
namespace wiWindowRegistration
{
#ifndef WINSTORE_SUPPORT
typedef HWND window_type;
#else
typedef Windows::UI::Core::CoreWindow^ window_type;
#endif
window_type GetRegisteredWindow();
void RegisterWindow(window_type wnd);
bool IsWindowActive();
};