Error.h 295 B

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