entry_qnx.cpp 685 B

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