mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
27 lines
567 B
C
27 lines
567 B
C
|
/*
|
||
|
gc_fragments.h
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifndef __FILES__
|
||
|
#include <Files.h>
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void GC_register_fragment(char* dataStart, char* dataEnd,
|
||
|
char* codeStart, char* codeEnd,
|
||
|
const FSSpec* fragmentSpec);
|
||
|
|
||
|
void GC_unregister_fragment(char* dataStart, char* dataEnd,
|
||
|
char* codeStart, char* codeEnd);
|
||
|
|
||
|
int GC_address_to_source(char* codeAddr, char symbolName[256], char fileName[256], UInt32* fileOffset);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern "C" */
|
||
|
#endif
|