Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

binary.cpp 605B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*!
  2. * \file src/utils/binary.cpp
  3. * \brief Binary file reading utilities
  4. *
  5. * \author xythobuz
  6. */
  7. #include "global.h"
  8. #include "utils/binary.h"
  9. void binOpen(const char *file) {
  10. }
  11. void binClose() {
  12. }
  13. unsigned long binTell() {
  14. return 0;
  15. }
  16. void binSeek(unsigned long pos) {
  17. }
  18. int8_t binRead8() {
  19. return 0;
  20. }
  21. uint8_t binReadU8() {
  22. return 0;
  23. }
  24. int16_t binRead16() {
  25. return 0;
  26. }
  27. uint16_t binReadU16() {
  28. return 0;
  29. }
  30. int32_t binRead32() {
  31. return 0;
  32. }
  33. uint32_t binReadU32() {
  34. return 0;
  35. }
  36. int64_t binRead64() {
  37. return 0;
  38. }
  39. uint64_t binReadU64() {
  40. return 0;
  41. }