Fix LIBRARY_NAME

This commit is contained in:
James Benton 2016-01-04 05:20:12 -08:00
parent 397426de37
commit 44225e4c28
5 changed files with 7 additions and 6 deletions

View File

@ -7,6 +7,9 @@ extern "C" {
void void
GX2Init(); GX2Init();
void
GX2Shutdown();
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@ -1,2 +1 @@
#define LIBRARY_NAME "coreinit.rpl" #define LIBRARY_NAME "coreinit"
#define LIBRARY_SYMBOL coreinit

View File

@ -1,2 +1 @@
#define LIBRARY_NAME "gx2.rpl" #define LIBRARY_NAME "gx2"
#define LIBRARY_SYMBOL gx2

View File

@ -1 +1,2 @@
EXPORT(GX2Init); EXPORT(GX2Init);
EXPORT(GX2Shutdown);

View File

@ -3,7 +3,6 @@
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
GX2Init();
OSFatal("my first rpx"); OSFatal("my first rpx");
return 0; return 0;
} }