mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
Move overlay 4 to `nintendo_wfc` Move overlay 18 to `wfc_settings` Move overlay 60 to `http` `unk_02099550` to `wifi_overlays`
20 lines
697 B
C
20 lines
697 B
C
#ifndef POKEPLATINUM_NINTENDO_WFC_VOICE_CHAT_H
|
|
#define POKEPLATINUM_NINTENDO_WFC_VOICE_CHAT_H
|
|
|
|
#include "constants/heap.h"
|
|
|
|
typedef void (*VoiceChatCleanupCallback)(void);
|
|
|
|
void VoiceChat_Start(enum HeapID heapID, int codec, int numConferenceSessions);
|
|
void VoiceChat_Main(void);
|
|
void VoiceChat_Stop(void);
|
|
void VoiceChat_SetCleanupCallback(VoiceChatCleanupCallback func);
|
|
void VoiceChat_Enable(void);
|
|
void VoiceChat_Disable(void);
|
|
BOOL VoiceChat_DetectVoice(void);
|
|
BOOL VoiceChat_ProcessReceivedData(int id, void *buffer, int size);
|
|
void VoiceChat_RequestEnd(void);
|
|
BOOL VoiceChat_AddConferenceClients(int newClientsBitmap, int currentClientID);
|
|
|
|
#endif // POKEPLATINUM_NINTENDO_WFC_VOICE_CHAT_H
|