entry_qnx.cpp 668 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright 2011-2014 Branimir Karadzic. All rights reserved.
  3. * License: http://www.opensource.org/licenses/BSD-2-Clause
  4. */
  5. #include "entry_p.h"
  6. #if ENTRY_CONFIG_USE_NATIVE && BX_PLATFORM_QNX
  7. #include <stdio.h>
  8. namespace entry
  9. {
  10. const Event* poll()
  11. {
  12. return NULL;
  13. }
  14. void release(const Event* _event)
  15. {
  16. }
  17. void setWindowSize(uint32_t _width, uint32_t _height)
  18. {
  19. }
  20. void setWindowTitle(const char* _title)
  21. {
  22. BX_UNUSED(_title);
  23. }
  24. void toggleWindowFrame()
  25. {
  26. }
  27. void setMouseLock(bool _lock)
  28. {
  29. }
  30. } // namespace entry
  31. int main(int _argc, char** _argv)
  32. {
  33. entry::main(_argc, _argv);
  34. }
  35. #endif // ENTRY_CONFIG_USE_NATIVE && BX_PLATFORM_QNX