This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bgfx/examples/common/entry_qnx.cpp

46 lines
603 B
C++
Raw Normal View History

2013-04-13 01:54:17 -07:00
/*
* Copyright 2011-2013 Branimir Karadzic. All rights reserved.
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
2013-05-18 22:12:40 -07:00
#include "common.h"
2013-04-13 01:54:17 -07: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
extern int _main_(int _argc, char** _argv);
int main(int _argc, char** _argv)
{
_main_(_argc, _argv);
}
#endif // BX_PLATFORM_QNX