mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-21 10:42:07 +00:00
Rename export type enum to that
This prevents a conflict in the next commit
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
struct Symbol {
|
struct Symbol {
|
||||||
/* Info contained in the object files */
|
/* Info contained in the object files */
|
||||||
char *name;
|
char *name;
|
||||||
enum SymbolType type;
|
enum ExportLevel type;
|
||||||
char const *objFileName;
|
char const *objFileName;
|
||||||
char *fileName;
|
char *fileName;
|
||||||
int32_t lineNo;
|
int32_t lineNo;
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ enum SectionType {
|
|||||||
SECTTYPE_INVALID
|
SECTTYPE_INVALID
|
||||||
};
|
};
|
||||||
|
|
||||||
enum SymbolType {
|
enum ExportLevel {
|
||||||
SYMTYPE_LOCAL,
|
SYMTYPE_LOCAL,
|
||||||
SYMTYPE_IMPORT,
|
SYMTYPE_IMPORT,
|
||||||
SYMTYPE_EXPORT
|
SYMTYPE_EXPORT
|
||||||
|
|||||||
Reference in New Issue
Block a user