Install curl-7.25.0.tar.bz2
[msysgit.git] / mingw / share / man / man3 / curl_global_init_mem.3
blobd13a17c6e42719734482e799910466b698d6fcc8
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
9 .\" *
10 .\" * This software is licensed as described in the file COPYING, which
11 .\" * you should have received as part of this distribution. The terms
12 .\" * are also available at http://curl.haxx.se/docs/copyright.html.
13 .\" *
14 .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 .\" * copies of the Software, and permit persons to whom the Software is
16 .\" * furnished to do so, under the terms of the COPYING file.
17 .\" *
18 .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 .\" * KIND, either express or implied.
20 .\" *
21 .\" **************************************************************************
22 .TH curl_global_init_mem 3 "10 May 2004" "libcurl 7.12.0" "libcurl Manual"
23 .SH NAME
24 curl_global_init_mem - Global libcurl initialisation with memory callbacks
25 .SH SYNOPSIS
26 .B #include <curl/curl.h>
27 .nf
28 .B "CURLcode curl_global_init_mem(long " flags,
29 .B " curl_malloc_callback "m,
30 .B " curl_free_callback "f,
31 .B " curl_realloc_callback "r,
32 .B " curl_strdup_callback "s,
33 .B " curl_calloc_callback "c ");"
34 .SH DESCRIPTION
35 This function works exactly as \fIcurl_global_init(3)\fP with one addition: it
36 allows the application to set callbacks to replace the otherwise used internal
37 memory functions.
39 This man page only adds documentation for the callbacks, see the
40 \fIcurl_global_init(3)\fP man page for all the rest. When you use this
41 function, all callback arguments must be set to valid function pointers.
43 The prototypes for the given callbacks should match these:
44 .IP "void *malloc_callback(size_t size);"
45 To replace malloc()
46 .IP "void free_callback(void *ptr);"
47 To replace free()
48 .IP "void *realloc_callback(void *ptr, size_t size);"
49 To replace realloc()
50 .IP "char *strdup_callback(const char *str);"
51 To replace strdup()
52 .IP "void *calloc_callback(size_t nmemb, size_t size);"
53 To replace calloc()
54 .SH "CAUTION"
55 Manipulating these gives considerable powers to the application to severly
56 screw things up for libcurl. Take care!
57 .SH "SEE ALSO"
58 .BR curl_global_init "(3), "
59 .BR curl_global_cleanup "(3), "