errors.h 549 B

1234567891011121314151617
  1. // Copyright 2016 Citra Emulator Project
  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 FileSys {
  7. constexpr ResultCode ERROR_PATH_NOT_FOUND{ErrorModule::FS, 1};
  8. constexpr ResultCode ERROR_ENTITY_NOT_FOUND{ErrorModule::FS, 1002};
  9. constexpr ResultCode ERROR_SD_CARD_NOT_FOUND{ErrorModule::FS, 2001};
  10. constexpr ResultCode ERROR_INVALID_OFFSET{ErrorModule::FS, 6061};
  11. constexpr ResultCode ERROR_INVALID_SIZE{ErrorModule::FS, 6062};
  12. } // namespace FileSys