Changeset 57432 in vbox for trunk/include/iprt/memsafer.h
- Timestamp:
- Aug 18, 2015 2:57:46 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/memsafer.h
r56291 r57432 108 108 * @param pszTag Allocation tag used for statistics and such. 109 109 */ 110 RTDECL(int) RTMemSaferAllocZExTag(void **ppvNew, size_t cb, uint32_t fFlags, const char *pszTag) RT_NO_THROW ;110 RTDECL(int) RTMemSaferAllocZExTag(void **ppvNew, size_t cb, uint32_t fFlags, const char *pszTag) RT_NO_THROW_PROTO; 111 111 112 112 /** … … 134 134 * @param pszTag Allocation tag used for statistics and such. 135 135 */ 136 RTDECL(void *) RTMemSaferAllocZTag(size_t cb, const char *pszTag) RT_NO_THROW ;136 RTDECL(void *) RTMemSaferAllocZTag(size_t cb, const char *pszTag) RT_NO_THROW_PROTO; 137 137 138 138 /** … … 168 168 * @param pszTag Allocation tag used for statistics and such. 169 169 */ 170 RTDECL(int) RTMemSaferReallocZExTag(size_t cbOld, void *pvOld, size_t cbNew, void **ppvNew, uint32_t fFlags, const char *pszTag) RT_NO_THROW ;170 RTDECL(int) RTMemSaferReallocZExTag(size_t cbOld, void *pvOld, size_t cbNew, void **ppvNew, uint32_t fFlags, const char *pszTag) RT_NO_THROW_PROTO; 171 171 172 172 /** … … 207 207 * @param pszTag Allocation tag used for statistics and such. 208 208 */ 209 RTDECL(void *) RTMemSaferReallocZTag(size_t cbOld, void *pvOld, size_t cbNew, const char *pszTag) RT_NO_THROW ;209 RTDECL(void *) RTMemSaferReallocZTag(size_t cbOld, void *pvOld, size_t cbNew, const char *pszTag) RT_NO_THROW_PROTO; 210 210 211 211 /** … … 236 236 * @param cb The allocation size. 237 237 */ 238 RTDECL(void) RTMemSaferFree(void *pv, size_t cb) RT_NO_THROW ;238 RTDECL(void) RTMemSaferFree(void *pv, size_t cb) RT_NO_THROW_PROTO; 239 239 240 240 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.