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`
12 lines
374 B
C
12 lines
374 B
C
#ifndef POKEPLATINUM_HTTP_HTTP_H
|
|
#define POKEPLATINUM_HTTP_HTTP_H
|
|
|
|
void HTTP_Init(void);
|
|
int HTTP_PrepareRequest(const u8 *url, int dwcProfileID, const void *data, int dataSize, u8 *response, int maxResponseLength);
|
|
int HTTP_GetRequestStatus(void);
|
|
void HTTP_Shutdown(void);
|
|
int HTTP_GetErrorCode(void);
|
|
int HTTP_GetResponseLength(void);
|
|
|
|
#endif // POKEPLATINUM_HTTP_HTTP_H
|