File: export_mac.h

package info (click to toggle)
ace 6.0.3%2Bdfsg-0.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 49,368 kB
  • sloc: cpp: 341,826; perl: 30,850; ansic: 20,952; makefile: 10,144; sh: 4,744; python: 828; exp: 787; yacc: 511; xml: 330; lex: 158; lisp: 116; csh: 48; tcl: 5
file content (40 lines) | stat: -rw-r--r-- 1,266 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// -*- C++ -*-
// $Id: export_mac.h 80826 2008-03-04 14:51:23Z wotte $
// Definition for Win32 Export directives.
// This file is generated automatically by
// ${ACE_ROOT}/GenExportH.BAT
// ------------------------------
#if !defined (SYNCHLIB_EXPORT_H)
#define SYNCHLIB_EXPORT_H

#include "ace/config-all.h"

#if defined (ACE_AS_STATIC_LIBS) && !defined (SYNCHLIB_HAS_DLL)
#  define SYNCHLIB_HAS_DLL 0
#endif /* ACE_AS_STATIC_LIBS && ! TEST_HAS_DLL */

#if !defined (SYNCHLIB_HAS_DLL)
#define SYNCHLIB_HAS_DLL 1
#endif /* !SYNCHLIB_HAS_DLL */

#if defined (SYNCHLIB_HAS_DLL)
#  if (SYNCHLIB_HAS_DLL == 1)
#    if defined (SYNCHLIB_BUILD_DLL)
#      define SYNCHLIB_Export ACE_Proper_Export_Flag
#      define SYNCHLIB_SINGLETON_DECLARATION(T) ACE_EXPORT_SINGLETON_DECLARATION (T)
#    else
#      define SYNCHLIB_Export ACE_Proper_Import_Flag
#      define SYNCHLIB_SINGLETON_DECLARATION(T) ACE_IMPORT_SINGLETON_DECLARATION (T)
#    endif /* SYNCHLIB_BUILD_DLL */
#  else
#    define SYNCHLIB_Export
#    define SYNCHLIB_SINGLETON_DECLARATION(T)
#  endif   /* ! SYNCHLIB_HAS_DLL == 1 */
#else
#  define SYNCHLIB_Export
#  define SYNCHLIB_SINGLETON_DECLARATION(T)
#endif     /* SYNCHLIB_HAS_DLL */

#endif     /* SYNCHLIB_EXPORT_H */
// End of auto generated file.