mirror of
https://github.com/google0101-ryan/Emotional.git
synced 2025-04-02 10:32:07 -04:00
50 lines
No EOL
713 B
C
50 lines
No EOL
713 B
C
#include <stddef.h>
|
|
#include <loadcore/global.h>
|
|
#include <sifman/global.h>
|
|
|
|
ExportTable_t table =
|
|
{
|
|
.magic = 0x41C00000,
|
|
.next = NULL,
|
|
.version = 0x101,
|
|
.mode = 0,
|
|
.name = "sifman",
|
|
.exports = {
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
sifCmdInit,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
ExportStub,
|
|
sceSifCheckInit,
|
|
}
|
|
};
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
RegisterLibraryEntries(&table);
|
|
return 0;
|
|
} |