/*
 * Copyright (c) 2018-2020 Atmosphère-NX
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
#pragma once
#include 
namespace ams::dmnt::cheat::impl {
    void InitializeCheatManager();
    bool GetHasActiveCheatProcess();
    Handle GetCheatProcessEventHandle();
    Result GetCheatProcessMetadata(CheatProcessMetadata *out);
    Result ForceOpenCheatProcess();
    Result PauseCheatProcess();
    Result ResumeCheatProcess();
    Result ReadCheatProcessMemoryUnsafe(u64 process_addr, void *out_data, size_t size);
    Result WriteCheatProcessMemoryUnsafe(u64 process_addr, void *data, size_t size);
    Result PauseCheatProcessUnsafe();
    Result ResumeCheatProcessUnsafe();
    Result GetCheatProcessMappingCount(u64 *out_count);
    Result GetCheatProcessMappings(MemoryInfo *mappings, size_t max_count, u64 *out_count, u64 offset);
    Result ReadCheatProcessMemory(u64 proc_addr, void *out_data, size_t size);
    Result WriteCheatProcessMemory(u64 proc_addr, const void *data, size_t size);
    Result QueryCheatProcessMemory(MemoryInfo *mapping, u64 address);
    Result GetCheatCount(u64 *out_count);
    Result GetCheats(CheatEntry *cheats, size_t max_count, u64 *out_count, u64 offset);
    Result GetCheatById(CheatEntry *out_cheat, u32 cheat_id);
    Result ToggleCheat(u32 cheat_id);
    Result AddCheat(u32 *out_id, const CheatDefinition &def, bool enabled);
    Result RemoveCheat(u32 cheat_id);
    Result ReadStaticRegister(u64 *out, size_t which);
    Result WriteStaticRegister(size_t which, u64 value);
    Result ResetStaticRegisters();
    Result GetFrozenAddressCount(u64 *out_count);
    Result GetFrozenAddresses(FrozenAddressEntry *frz_addrs, size_t max_count, u64 *out_count, u64 offset);
    Result GetFrozenAddress(FrozenAddressEntry *frz_addr, u64 address);
    Result EnableFrozenAddress(u64 *out_value, u64 address, u64 width);
    Result DisableFrozenAddress(u64 address);
}