暫無描述
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.

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. }