curl_global_init_mem.3
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:1k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. ." You can view this file with:
  2. ." nroff -man [file]
  3. ."
  4. .TH curl_global_init_mem 3 "10 May 2004" "libcurl 7.12.0" "libcurl Manual"
  5. .SH NAME
  6. curl_global_init_mem - Global libcurl initialisation with memory callbacks
  7. .SH SYNOPSIS
  8. .B #include <curl/curl.h>
  9. .nf
  10. .B "CURLcode curl_global_init_mem(long " flags,
  11. .B " curl_malloc_callback "m,
  12. .B " curl_free_callback "f,
  13. .B " curl_realloc_callback "r,
  14. .B " curl_strdup_callback "s,
  15. .B " curl_calloc_callback "c ");"
  16. .SH DESCRIPTION
  17. This function works exactly as fIcurl_global_init(3)fP with one addition: it
  18. allows the application to set callbacks to replace the otherwise used internal
  19. memory functions.
  20. This man page only adds documentation for the callbacks, see the
  21. fIcurl_global_init(3)fP man page for all the rest. When you use this
  22. function, all callback arguments must be set to valid function pointers.
  23. The prototypes for the given callbacks should match these:
  24. .IP "void *malloc_callback(size_t size);"
  25. To replace malloc()
  26. .IP "void free_callback(void *ptr);"
  27. To replace free()
  28. .IP "void *realloc_callback(void *ptr, size_t size);"
  29. To replace realloc()
  30. .IP "char *strdup_callback(const char *str);"
  31. To replace strdup()
  32. .IP "void *calloc_callback(size_t nmemb, size_t size);"
  33. To replace calloc()
  34. .SH "CAUTION"
  35. Manipulating these gives considerable powers to the application to severly
  36. screw things up for libcurl. Take care!
  37. .SH "SEE ALSO"
  38. .BR curl_global_init "(3), "
  39. .BR curl_global_cleanup "(3), "