mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
PLUGINS: Move doxygen to the base class header.
No point in documenting it on every derived class. svn-id: r52574
This commit is contained in:
parent
a318934e45
commit
a4c9de25e6
@ -30,13 +30,6 @@
|
||||
|
||||
#include "common/debug.h"
|
||||
|
||||
/**
|
||||
* Follow the instruction of a relocation section.
|
||||
*
|
||||
* @param fileOffset Offset into the File
|
||||
* @param size Size of relocation section
|
||||
* @param relSegment Base address of relocated segment in memory (memory offset)
|
||||
*/
|
||||
bool ARMDLObject::relocate(Elf32_Off offset, Elf32_Word size, byte *relSegment) {
|
||||
Elf32_Rel *rel = 0; //relocation entry
|
||||
|
||||
|
@ -70,6 +70,14 @@ protected:
|
||||
virtual void relocateSymbols(ptrdiff_t offset);
|
||||
|
||||
// architecture specific
|
||||
|
||||
/**
|
||||
* Follow the instruction of a relocation section.
|
||||
*
|
||||
* @param fileOffset Offset into the File
|
||||
* @param size Size of relocation section
|
||||
* @param relSegment Base address of relocated segment in memory (memory offset)
|
||||
*/
|
||||
virtual bool relocate(Elf32_Off offset, Elf32_Word size, byte *relSegment) = 0;
|
||||
virtual bool relocateRels(Elf32_Ehdr *ehdr, Elf32_Shdr *shdr) = 0;
|
||||
|
||||
|
@ -31,13 +31,6 @@
|
||||
|
||||
#define DEBUG_NUM 2
|
||||
|
||||
/**
|
||||
* Follow the instruction of a relocation section.
|
||||
*
|
||||
* @param fileOffset Offset into the File
|
||||
* @param size Size of relocation section
|
||||
* @param relSegment Base address of relocated segment in memory (memory offset)
|
||||
*/
|
||||
bool MIPSDLObject::relocate(Elf32_Off offset, Elf32_Word size, byte *relSegment) {
|
||||
Elf32_Rel *rel = 0; // relocation entry
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user