mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 09:16:49 +02:00
14 lines
395 B
C++
14 lines
395 B
C++
#pragma once
|
|
|
|
/// @brief Interface for patch code implementing routines to send a SD command
|
|
class ISuperCardSendSdCommandPatchCode
|
|
{
|
|
protected:
|
|
ISuperCardSendSdCommandPatchCode() { }
|
|
|
|
public:
|
|
/// @brief Gets a pointer to the send SD command function in the patch code.
|
|
/// @return The pointer to the send SD command.
|
|
virtual const void* GetSendSdCommandFunction() const = 0;
|
|
};
|