reduce memory allocations to zero
[platform/upstream/glog.git] / src / windows / config.h
1 /* src/config.h.in.  Generated from configure.ac by autoheader.  */
2
3 /* Namespace for Google classes */
4 #define GOOGLE_NAMESPACE google
5
6 /* Stops putting the code inside the Google namespace */
7 #define _END_GOOGLE_NAMESPACE_ }
8
9 /* Puts following code inside the Google namespace */
10 #define _START_GOOGLE_NAMESPACE_ namespace google {
11
12 /* Always the empty-string on non-windows systems. On windows, should be
13    "__declspec(dllexport)". This way, when we compile the dll, we export our
14    functions/classes. It's safe to define this here because config.h is only
15    used internally, to compile the DLL, and every DLL source file #includes
16    "config.h" before anything else. */
17 #ifndef GOOGLE_GLOG_DLL_DECL
18 # define GOOGLE_GLOG_IS_A_DLL  1   /* not set if you're statically linking */
19 # define GOOGLE_GLOG_DLL_DECL  __declspec(dllexport)
20 # define GOOGLE_GLOG_DLL_DECL_FOR_UNITTESTS  __declspec(dllimport)
21 #endif