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

Error.h 295B

123456789101112131415
  1. #pragma once
  2. #include <string>
  3. #include <stdint.h>
  4. #include "os/ErrorCodes.h"
  5. namespace il2cpp
  6. {
  7. namespace os
  8. {
  9. ErrorCode SocketErrnoToErrorCode(int32_t code);
  10. ErrorCode FileErrnoToErrorCode(int32_t code);
  11. ErrorCode PathErrnoToErrorCode(const std::string& path, int32_t code);
  12. }
  13. }