2014-03-16 19:49:59 -04:00
|
|
|
/*
|
|
|
|
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "entry_p.h"
|
|
|
|
|
|
|
|
#if BX_PLATFORM_EMSCRIPTEN
|
|
|
|
|
|
|
|
#include <emscripten.h>
|
|
|
|
|
|
|
|
namespace entry
|
|
|
|
{
|
|
|
|
const Event* poll()
|
|
|
|
{
|
2014-03-16 19:58:22 -04:00
|
|
|
return NULL;
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
const Event* poll(WindowHandle _handle)
|
2014-03-16 19:49:59 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void release(const Event* _event)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_event);
|
|
|
|
}
|
|
|
|
|
|
|
|
WindowHandle createWindow(int32_t _x, int32_t _y, uint32_t _width, uint32_t _height, uint32_t _flags, const char* _title)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_x, _y, _width, _height, _flags, _title);
|
|
|
|
WindowHandle handle = { UINT16_MAX };
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
void destroyWindow(WindowHandle _handle)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setWindowPos(WindowHandle _handle, int32_t _x, int32_t _y)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_handle, _x, _y);
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
void setWindowSize(WindowHandle _handle, uint32_t _width, uint32_t _height)
|
2014-03-16 19:49:59 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle, _width, _height);
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
void setWindowTitle(WindowHandle _handle, const char* _title)
|
2014-08-05 15:57:52 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle, _title);
|
2014-08-05 15:57:52 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
void toggleWindowFrame(WindowHandle _handle)
|
2014-03-16 19:49:59 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle);
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
void setMouseLock(WindowHandle _handle, bool _lock)
|
2014-03-16 19:49:59 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle, _lock);
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int _argc, char** _argv)
|
|
|
|
{
|
|
|
|
return entry::main(_argc, _argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // BX_PLATFORM_EMSCRIPTEN
|