mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-23 12:46:23 -05:00
28 lines
642 B
C
28 lines
642 B
C
#ifndef POKEHEARTGOLD_OVY_72_H
|
|
#define POKEHEARTGOLD_OVY_72_H
|
|
|
|
#include "frontier_data.h"
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
#include "save.h"
|
|
#include "sav_system_info.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(OVY_MANAGER *man, int *state);
|
|
BOOL NintendoWfc_Main(OVY_MANAGER *man, int *state);
|
|
BOOL NintendoWfc_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
#endif //POKEHEARTGOLD_OVY_72_H
|