Changeset 51635 in vbox for trunk/include/iprt/http.h
- Timestamp:
- Jun 17, 2014 3:58:40 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/http.h
r46070 r51635 72 72 * '\0'-terminated. 73 73 */ 74 RTR3DECL(int) RTHttpGet(RTHTTP hHttp, const char *pcszUrl, char **ppszResponse); 74 RTR3DECL(int) RTHttpGetText(RTHTTP hHttp, const char *pcszUrl, char **ppszResponse); 75 76 /** 77 * Perform a simple blocking HTTP request. 78 * 79 * @returns iprt status code. 80 * 81 * @param hHttp HTTP interface handle. 82 * @param pcszUrl URL. 83 * @param ppvResponse HTTP response. 84 * @param pcb Size of the returned buffer. 85 */ 86 RTR3DECL(int) RTHttpGetBinary(RTHTTP hHttp, const char *pcszUrl, void **ppvResponse, size_t *pcb); 75 87 76 88 /**
Note:
See TracChangeset
for help on using the changeset viewer.