mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-16 08:05:55 -05:00
12 lines
343 B
C
12 lines
343 B
C
#ifndef POKEPLATINUM_HTTP_H
|
|
#define POKEPLATINUM_HTTP_H
|
|
|
|
void HTTP_Init(void);
|
|
int HTTP_PrepareRequest(const u8 *param0, int param1, const void *param2, int param3, u8 *param4, int param5);
|
|
int HTTP_GetRequestStatus(void);
|
|
void HTTP_Shutdown(void);
|
|
int HTTP_GetErrorCode(void);
|
|
int HTTP_GetResponseLength(void);
|
|
|
|
#endif // POKEPLATINUM_HTTP_H
|