platform.h 396 B

1234567891011121314151617
  1. /*
  2. * OpenHMD - Free and Open Source API and drivers for immersive technology.
  3. * Copyright (C) 2013 Fredrik Hultin.
  4. * Copyright (C) 2013 Jakob Bornecrantz.
  5. * Distributed under the Boost 1.0 licence, see LICENSE for full text.
  6. */
  7. /* Internal Interface for Platform Specific Functions */
  8. #ifndef PLATFORM_H
  9. #define PLATFORM_H
  10. double ohmd_get_tick();
  11. void ohmd_sleep(double seconds);
  12. #endif