Added missing toggleFullscreen() in entry_windows.cpp.

This commit is contained in:
Dario Manesku 2015-03-08 06:36:40 +01:00
parent 6683df3a8c
commit 633ea3f211

View file

@ -1067,6 +1067,11 @@ namespace entry
PostMessage(s_ctx.m_hwnd[0], WM_USER_WINDOW_TOGGLE_FRAME, _handle.idx, 0);
}
void toggleFullscreen(WindowHandle _handle)
{
BX_UNUSED(_handle);
}
void setMouseLock(WindowHandle _handle, bool _lock)
{
PostMessage(s_ctx.m_hwnd[0], WM_USER_WINDOW_MOUSE_LOCK, _handle.idx, _lock);