暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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