File.cpp 282 B

123456789101112131415161718
  1. #include "il2cpp-config.h"
  2. #if IL2CPP_USE_GENERIC_FILE
  3. #include "os/File.h"
  4. namespace il2cpp
  5. {
  6. namespace os
  7. {
  8. bool File::Truncate(FileHandle* handle, int *error)
  9. {
  10. NO_UNUSED_WARNING(handle);
  11. NO_UNUSED_WARNING(error);
  12. return false;
  13. }
  14. }
  15. }
  16. #endif