Updated some comments

This commit is contained in:
Gericom
2026-01-02 16:13:56 +01:00
parent 9be5424f23
commit e0e33032b9
4 changed files with 6 additions and 3 deletions

View File

@@ -1,10 +1,13 @@
#pragma once
/// @brief Interface for sector remapping patch code.
class ISectorRemapPatchCode
{
protected:
ISectorRemapPatchCode() { }
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;
};

View File

@@ -1,6 +1,6 @@
#pragma once
/// @brief Abstract base class for patch code implementing dma sector reads
/// @brief Interface for patch code implementing dma sector reads.
class IReadSectorsDmaPatchCode
{
protected:

View File

@@ -1,6 +1,6 @@
#pragma once
/// @brief Abstract base class for patch code implementing sector reads
/// @brief Interface for patch code implementing sector reads.
class IReadSectorsPatchCode
{
protected:

View File

@@ -1,6 +1,6 @@
#pragma once
/// @brief Abstract base class for patch code implementing sector writes
/// @brief Interface for patch code implementing sector writes.
class IWriteSectorsPatchCode
{
protected: