mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-05 20:46:28 -05:00
28 lines
652 B
C
28 lines
652 B
C
#ifndef POKEHEARTGOLD_OVY_72_H
|
|
#define POKEHEARTGOLD_OVY_72_H
|
|
|
|
#include "frontier_data.h"
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
#include "sav_system_info.h"
|
|
#include "save.h"
|
|
|
|
typedef struct NintendoWifiConnectArgs {
|
|
FrontierData *frontierData;
|
|
u32 unk4;
|
|
SysInfo *sysInfo;
|
|
SaveData *saveData;
|
|
Options *options;
|
|
void *unk14;
|
|
int unk18;
|
|
void *unk1C;
|
|
int unk20;
|
|
int unk24;
|
|
} NintendoWifiConnectArgs;
|
|
|
|
BOOL NintendoWfc_Init(OverlayManager *man, int *state);
|
|
BOOL NintendoWfc_Main(OverlayManager *man, int *state);
|
|
BOOL NintendoWfc_Exit(OverlayManager *man, int *state);
|
|
|
|
#endif // POKEHEARTGOLD_OVY_72_H
|