No Description
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.

File.cpp 282B

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