NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
NWC24FriendList.h
1#ifndef RVL_SDK_NWC24_FRIEND_LIST_H
2#define RVL_SDK_NWC24_FRIEND_LIST_H
3#include <revolution/NWC24/NWC24Types.h>
4#include <types.h>
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9#define NWC24_FRIEND_LIST_CAPACITY 100
10
11typedef struct NWC24FLHeader {
12 u32 magic; // at 0x0
13 u32 version; // at 0x4
14 u32 capacity; // at 0x8
15 u32 size; // at 0xC
16 char UNK_0x10[0x40 - 0x10];
17 u64 friendCodes[NWC24_FRIEND_LIST_CAPACITY]; // at 0x40
19
20NWC24Err NWC24iOpenFriendList(void);
21
22#ifdef __cplusplus
23}
24#endif
25#endif