changhong_newclient/xcode/Libraries/libil2cpp/include/os/Error.h

17 lines
212 B
C
Raw Normal View History

2025-09-22 17:27:49 +08:00
#pragma once
#include "os/ErrorCodes.h"
namespace il2cpp
{
namespace os
{
class Error
{
public:
static ErrorCode GetLastError();
static void SetLastError(ErrorCode code);
};
}
}