HTTPX_Unpause
HTTPX_Unpause(DownloadID) Unpauses the download.
Syntax
native HTTPX_Unpause(DownloadID) /** * HTTPX_Abort(DownloadID, bool:DeleteFile = true) * * Aborts the transfer of selected download DownloadID. * If DeleteFile is set to true the partially downloaded file will be deleted. **/ native HTTPX_Abort(DownloadID, bool:DeleteFile = true) /** * HTTPX_AddPostVar(const variable[], const value[]) * * Adds a POST variable to the request. * This function is used before HTTPX_Download() or HTTP_AddToQue(), similar to set/show hudmessage. * It can be used multiple times before each download. **/ native HTTPX_AddPostVar(const variable[], const value[]) /** * HTTPX_AddPostRaw(const data[]) * * Adds raw POST data to the request. * This function is used before HTTPX_Download() or HTTP_AddToQue(), similar to set/show hudmessage. * It can be used multiple times before each download. **/ native HTTPX_AddPostRaw(const data[]) /** * Number of parameters for the callbacks are 1 (DownloadID) for the progress event and 2 (DownloadID, Error) for the complete event.
Usage
| DownloadID | — |
Defined in
httpx.inc
at line 139
.
This documentation was automatically generated from source.