2014-03-16 16:49:59 -07: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 16:58:22 -07:00
return NULL ;
2014-03-16 16:49:59 -07:00
}
2014-09-22 19:34:10 -07:00
const Event * poll ( WindowHandle _handle )
2014-03-16 16:49:59 -07:00
{
2014-09-22 19:34:10 -07: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 16:49:59 -07:00
}
2014-09-22 19:34:10 -07:00
void setWindowSize ( WindowHandle _handle , uint32_t _width , uint32_t _height )
2014-03-16 16:49:59 -07:00
{
2014-09-22 19:34:10 -07:00
BX_UNUSED ( _handle , _width , _height ) ;
2014-03-16 16:49:59 -07:00
}
2014-09-22 19:34:10 -07:00
void setWindowTitle ( WindowHandle _handle , const char * _title )
2014-08-05 20:57:52 +01:00
{
2014-09-22 19:34:10 -07:00
BX_UNUSED ( _handle , _title ) ;
2014-08-05 20:57:52 +01:00
}
2014-09-22 19:34:10 -07:00
void toggleWindowFrame ( WindowHandle _handle )
2014-03-16 16:49:59 -07:00
{
2014-09-22 19:34:10 -07:00
BX_UNUSED ( _handle ) ;
2014-03-16 16:49:59 -07:00
}
2014-09-22 19:34:10 -07:00
void setMouseLock ( WindowHandle _handle , bool _lock )
2014-03-16 16:49:59 -07:00
{
2014-09-22 19:34:10 -07:00
BX_UNUSED ( _handle , _lock ) ;
2014-03-16 16:49:59 -07:00
}
}
int main ( int _argc , char * * _argv )
{
return entry : : main ( _argc , _argv ) ;
}
# endif // BX_PLATFORM_EMSCRIPTEN