Changeset 13075 in vbox
- Timestamp:
- Oct 8, 2008 12:27:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/req.h
r13064 r13075 207 207 * @param pfnFunction Pointer to the function to call. 208 208 * @param cArgs Number of arguments following in the ellipsis. 209 * Arguments may not be wider than the host pointer size! 209 * The arguments must be of integer or pointer type and 210 * not bigger in size than uintptr_t. Do not try pass 211 * 64-bit integers directly in portable code. 210 212 * @param ... Function arguments. 211 213 */ … … 233 235 * @param pfnFunction Pointer to the function to call. 234 236 * @param cArgs Number of arguments following in the ellipsis. 235 * Arguments may not be wider than the host pointer size! 237 * The arguments must be of integer or pointer type and 238 * not bigger in size than uintptr_t. Do not try pass 239 * 64-bit integers directly in portable code. 236 240 * @param ... Function arguments. 237 241 */ … … 261 265 * @param pfnFunction Pointer to the function to call. 262 266 * @param cArgs Number of arguments following in the ellipsis. 263 * Arguments may not be wider than the host pointer size! 267 * The arguments must be of integer or pointer type and 268 * not bigger in size than uintptr_t. Do not try pass 269 * 64-bit integers directly in portable code. 264 270 * @param ... Function arguments. 265 271 */ … … 289 295 * @param pfnFunction Pointer to the function to call. 290 296 * @param cArgs Number of arguments following in the ellipsis. 291 * Arguments may not be wider than the host pointer size! 297 * The arguments must be of integer or pointer type and 298 * not bigger in size than uintptr_t. Do not try pass 299 * 64-bit integers directly in portable code. 292 300 * @param Args Variable argument vector. 293 301 */
Note:
See TracChangeset
for help on using the changeset viewer.