bgfx/examples/common/entry/entry_qnx.cpp

44 lines
562 B
C++
Raw Normal View History

2013-04-13 04:54:17 -04:00
/*
* Copyright 2011-2013 Branimir Karadzic. All rights reserved.
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "entry.h"
2013-04-13 04:54:17 -04:00
#if BX_PLATFORM_QNX
#include <stdio.h>
#include "entry.h"
namespace entry
{
const Event* poll()
{
return NULL;
}
void release(const Event* _event)
{
}
void setWindowSize(uint32_t _width, uint32_t _height)
{
}
void toggleWindowFrame()
{
}
void setMouseLock(bool _lock)
{
}
} // namespace entry
int main(int _argc, char** _argv)
{
entry::main(_argc, _argv);
2013-04-13 04:54:17 -04:00
}
#endif // BX_PLATFORM_QNX