mirror of
https://github.com/encounter/ctrulib.git
synced 2026-03-30 11:04:30 -07:00
18 lines
309 B
C
18 lines
309 B
C
#include <3ds/types.h>
|
|
#include <3ds/srv.h>
|
|
#include <3ds/gfx.h>
|
|
#include <3ds/sdmc.h>
|
|
#include <3ds/services/apt.h>
|
|
#include <3ds/services/fs.h>
|
|
#include <3ds/services/hid.h>
|
|
|
|
void __attribute__((weak)) __appInit() {
|
|
// Initialize services
|
|
srvInit();
|
|
aptInit();
|
|
hidInit(NULL);
|
|
|
|
fsInit();
|
|
sdmcInit();
|
|
}
|