errors.h 493 B

12345678910111213141516
  1. // Copyright 2019 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "core/hle/result.h"
  6. namespace Service::Glue {
  7. constexpr ResultCode ERR_INVALID_RESOURCE{ErrorModule::ARP, 0x1E};
  8. constexpr ResultCode ERR_INVALID_PROCESS_ID{ErrorModule::ARP, 0x1F};
  9. constexpr ResultCode ERR_INVALID_ACCESS{ErrorModule::ARP, 0x2A};
  10. constexpr ResultCode ERR_NOT_REGISTERED{ErrorModule::ARP, 0x66};
  11. } // namespace Service::Glue