Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add DLL_STATIC flags.
[simgrid.git] / include / simgrid_config.h.in
1 /* $Id$ */
2
3 /* simgrid_config.h - Results of the configure made visible to user code    */
4
5 /* Copyright (c) 2009, Da SimGrid team. All rights reserved.                */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "xbt/misc.h"           /* XBT_PUBLIC */
11
12 #ifdef _XBT_DLL_EXPORT
13         #define DLL_EXPORT
14 #else
15         #ifdef _XBT_DLL_STATIC
16                 #define DLL_STATIC
17         #else
18                 #define DLL_IMPORT
19         #endif
20 #endif
21
22 #cmakedefine _XBT_WIN32 @_XBT_WIN32@    //this variable is set if it is a windows platform
23 #cmakedefine _WIN32 @_WIN32@                    //this variable is set if it is a 32 bits windows platform
24 #cmakedefine _WIN64 @_WIN64@                    //this variable is set if it is a 64 bits  windows platform
25 #cmakedefine __VISUALC__ @__VISUALC__@
26 #cmakedefine __BORLANDC__ @__BORLANDC__@
27
28 #ifndef SIMGRID_PUBLIC_CONFIG_H
29 #define SIMGRID_PUBLIC_CONFIG_H
30
31 /* Get the config */
32 #undef SIMGRID_NEED_GETLINE
33 #undef SIMGRID_NEED_ASPRINTF
34 #undef SIMGRID_NEED_VASPRINTF
35 @need_getline@
36 @need_asprintf@
37 @need_vasprintf@
38
39 /* Use that config to declare missing elements */
40 #ifdef SIMGRID_NEED_GETLINE
41 #include <stdlib.h> /* size_t */
42 #include <stdio.h>  /* FILE*  */
43 XBT_PUBLIC(long) getline(char **lineptr, size_t * n, FILE * stream);
44 #else
45 #ifndef _GNU_SOURCE
46         #define _GNU_SOURCE
47 #endif
48 #include <stdio.h>
49 #endif
50
51
52 /* snprintf related functions */
53 /** @addtogroup XBT_str
54   * @{ */
55 /** @brief print to allocated string (reimplemented when not provided by the system)
56  *
57  * The functions asprintf() and vasprintf() are analogues of
58  * sprintf() and vsprintf(), except that they allocate a string large
59  * enough to hold the output including the terminating null byte, and
60  * return a pointer to it via the first parameter.  This pointer
61  * should be passed to free(3) to release the allocated storage when
62  * it is no longer needed.
63  */
64 #if defined(SIMGRID_NEED_ASPRINTF)||defined(DOXYGEN)
65 XBT_PUBLIC(int) asprintf(char **ptr, const char *fmt,   /*args */
66                          ...) _XBT_GNUC_PRINTF(2, 3);
67 #endif
68 /** @brief print to allocated string (reimplemented when not provided by the system)
69  *
70  * See asprintf()
71  */
72 #if defined(SIMGRID_NEED_VASPRINTF)||defined(DOXYGEN)
73 #include <stdarg.h>
74 XBT_PUBLIC(int) vasprintf(char **ptr, const char *fmt, va_list ap);
75 #endif
76 /** @brief print to allocated string
77  *
78  * Works just like asprintf(), but returns a pointer to the newly created string
79  */
80 XBT_PUBLIC(char *) bprintf(const char *fmt, ...) _XBT_GNUC_PRINTF(1, 2);
81 /** @} */
82
83 #endif /* SIMGRID_PUBLIC_CONFIG_H */