mirror of
https://github.com/google0101-ryan/Emotional.git
synced 2025-04-02 10:32:07 -04:00
20 lines
No EOL
353 B
C
20 lines
No EOL
353 B
C
#pragma once
|
|
|
|
typedef struct ExportTable_t
|
|
{
|
|
unsigned int magic;
|
|
struct ExportTable_t* next;
|
|
unsigned short version;
|
|
unsigned short mode;
|
|
char name[8];
|
|
void* exports[];
|
|
} ExportTable_t;
|
|
|
|
void RegisterLibraryEntries(ExportTable_t* table);
|
|
|
|
static void ExportStub()
|
|
{
|
|
// Do nothing export stub for placeholder slots
|
|
}
|
|
|
|
int* QueryBootMode(int mode); |