Changeset 46050 in vbox for trunk/include/iprt
- Timestamp:
- May 14, 2013 8:41:11 AM (12 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dbg.h
r46025 r46050 318 318 * @param pszEnvVarPrefix The environment variable prefix. If NULL, the 319 319 * environment is not consulted. 320 * @param fNativePaths Whether to pick up native paths from the 321 * environment. 320 322 * 321 323 * @sa RTDbgCfgChangeString, RTDbgCfgChangeUInt. 322 324 */ 323 RTDECL(int) RTDbgCfgCreate(PRTDBGCFG phDbgCfg, const char *pszEnvVarPrefix );325 RTDECL(int) RTDbgCfgCreate(PRTDBGCFG phDbgCfg, const char *pszEnvVarPrefix, bool fNativePaths); 324 326 325 327 /** -
trunk/include/iprt/http.h
r45454 r46050 75 75 76 76 /** 77 * Perform a simple blocking HTTP request, writing the output to a file. 78 * 79 * @returns iprt status code. 80 * 81 * @param hHttp HTTP interface handle. 82 * @param pszUrl URL. 83 * @param pszDstFile The destination file name. 84 */ 85 RTR3DECL(int) RTHttpGetFile(RTHTTP hHttp, const char *pszUrl, const char *pszDstFile); 86 87 /** 77 88 * Abort a pending HTTP request. A blocking RTHttpGet() call will return with 78 89 * VERR_HTTP_ABORTED. It may take some time (current cURL implementation needs … … 108 119 * @param pcszHeaders array of headers in form "foo: bar". 109 120 */ 110 RTR3DECL(int) RTHttpSetHeaders(RTHTTP hHttp, uint32_t cHeaders, const char *pcszHeaders[]);121 RTR3DECL(int) RTHttpSetHeaders(RTHTTP hHttp, size_t cHeaders, const char * const *papszHeaders); 111 122 112 123 /** … … 119 130 */ 120 131 RTR3DECL(int) RTHttpSetCAFile(RTHTTP hHttp, const char *pcszCAFile); 121 /** @} */122 132 123 133 … … 143 153 uint8_t **pabSha512, size_t *pcbSha512); 144 154 155 156 /** @} */ 157 145 158 RT_C_DECLS_END 146 159 -
trunk/include/iprt/mangling.h
r46012 r46050 598 598 # define RTHeapSimpleRelocate RT_MANGLER(RTHeapSimpleRelocate) 599 599 # define RTHeapSimpleSize RT_MANGLER(RTHeapSimpleSize) 600 # define RTHttpGetFile RT_MANGLER(RTHttpGetFile) 600 601 # define RTIsoFsClose RT_MANGLER(RTIsoFsClose) 601 602 # define RTIsoFsExtractFile RT_MANGLER(RTIsoFsExtractFile)
Note:
See TracChangeset
for help on using the changeset viewer.