Files
pico-loader/arm9/source/patches/platform/compactflash-common/ICompactFlashLockUnlockPatchCode.h
Edoardo Lolletti 6a97b677a7 Add support for Slot 2 flashcarts using Compact Flash (#84)
- Supercard CF (SUPERCARDCF)
- GBA Media Player CF (MPCF)
- M3 Adapter CF (M3CF)
- Max Media Dock CF (MMCF)
2026-01-10 22:00:39 +00:00

14 lines
398 B
C++

#pragma once
/// @brief Interface for patch code implementing Compact Flash carts lock/unlock routines
class ICompactFlashLockUnlockPatchCode
{
protected:
ICompactFlashLockUnlockPatchCode() { }
public:
/// @brief Gets a pointer to the SD write function in the patch code.
/// @return The pointer to the SD write function.
virtual const void* GetLockUnlockFunction() const = 0;
};