mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 09:16:49 +02:00
Updated some comments
This commit is contained in:
@@ -1,10 +1,13 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
/// @brief Interface for sector remapping patch code.
|
||||||
class ISectorRemapPatchCode
|
class ISectorRemapPatchCode
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
ISectorRemapPatchCode() { }
|
ISectorRemapPatchCode() { }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/// @brief Gets a pointer to the sector remap function in the patch code.
|
||||||
|
/// @return The pointer to the sector remap function.
|
||||||
virtual const void* GetRemapFunction() const = 0;
|
virtual const void* GetRemapFunction() const = 0;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
/// @brief Abstract base class for patch code implementing dma sector reads
|
/// @brief Interface for patch code implementing dma sector reads.
|
||||||
class IReadSectorsDmaPatchCode
|
class IReadSectorsDmaPatchCode
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
/// @brief Abstract base class for patch code implementing sector reads
|
/// @brief Interface for patch code implementing sector reads.
|
||||||
class IReadSectorsPatchCode
|
class IReadSectorsPatchCode
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
/// @brief Abstract base class for patch code implementing sector writes
|
/// @brief Interface for patch code implementing sector writes.
|
||||||
class IWriteSectorsPatchCode
|
class IWriteSectorsPatchCode
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
Reference in New Issue
Block a user