2021-04-06 16:58:19 +02:00
|
|
|
#include <wups.h>
|
2022-01-30 20:47:29 +01:00
|
|
|
#include "utils/logger.h"
|
2021-04-06 16:58:19 +02:00
|
|
|
#include "modpackSelector.h"
|
|
|
|
#include <coreinit/title.h>
|
|
|
|
|
|
|
|
WUPS_PLUGIN_NAME("SDCafiine");
|
|
|
|
WUPS_PLUGIN_DESCRIPTION("Wiiload Server");
|
|
|
|
WUPS_PLUGIN_VERSION("0.1");
|
|
|
|
WUPS_PLUGIN_AUTHOR("Maschell");
|
|
|
|
WUPS_PLUGIN_LICENSE("GPL");
|
|
|
|
|
2021-10-02 11:43:15 +02:00
|
|
|
WUPS_USE_WUT_DEVOPTAB();
|
2021-04-06 16:58:19 +02:00
|
|
|
|
|
|
|
/* Entry point */
|
|
|
|
ON_APPLICATION_START() {
|
2022-01-30 20:47:29 +01:00
|
|
|
initLogging();
|
2021-04-06 16:58:19 +02:00
|
|
|
HandleMultiModPacks(OSGetTitleID());
|
2022-01-30 20:47:29 +01:00
|
|
|
}
|
|
|
|
ON_APPLICATION_ENDS(){
|
|
|
|
deinitLogging();
|
2021-04-06 16:58:19 +02:00
|
|
|
}
|