blob: e24feee2051dfd9e2d07eade7a5208c20cb2de2c [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
2 * Copyright (c) 1998-2006,2007 Free Software Foundation, Inc. *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
28/* $Id: ncurses_dll.h,v 1.6 2007/03/10 19:21:49 tom Exp $ */
29
30#ifndef NCURSES_DLL_H_incl
31#define NCURSES_DLL_H_incl 1
32
33/* no longer needed on cygwin or mingw, thanks to auto-import */
34/* but this structure may be useful at some point for an MSVC build */
35/* so, for now unconditionally define the important flags */
36/* "the right way" for proper static and dll+auto-import behavior */
37#undef NCURSES_DLL
38#define NCURSES_STATIC
39
40#if defined(__CYGWIN__)
41# if defined(NCURSES_DLL)
42# if defined(NCURSES_STATIC)
43# undef NCURSES_STATIC
44# endif
45# endif
46# undef NCURSES_IMPEXP
47# undef NCURSES_API
48# undef NCURSES_EXPORT
49# undef NCURSES_EXPORT_VAR
50# if defined(NCURSES_DLL)
51/* building a DLL */
52# define NCURSES_IMPEXP __declspec(dllexport)
53# elif defined(NCURSES_STATIC)
54/* building or linking to a static library */
55# define NCURSES_IMPEXP /* nothing */
56# else
57/* linking to the DLL */
58# define NCURSES_IMPEXP __declspec(dllimport)
59# endif
60# define NCURSES_API __cdecl
61# define NCURSES_EXPORT(type) NCURSES_IMPEXP type NCURSES_API
62# define NCURSES_EXPORT_VAR(type) NCURSES_IMPEXP type
63#endif
64
65/* Take care of non-cygwin platforms */
66#if !defined(NCURSES_IMPEXP)
67# define NCURSES_IMPEXP /* nothing */
68#endif
69#if !defined(NCURSES_API)
70# define NCURSES_API /* nothing */
71#endif
72#if !defined(NCURSES_EXPORT)
73# define NCURSES_EXPORT(type) NCURSES_IMPEXP type NCURSES_API
74#endif
75#if !defined(NCURSES_EXPORT_VAR)
76# define NCURSES_EXPORT_VAR(type) NCURSES_IMPEXP type
77#endif
78
79/*
80 * For reentrant code, we map the various global variables into SCREEN by
81 * using functions to access them.
82 */
83#define NCURSES_PUBLIC_VAR(name) _nc_##name
84#define NCURSES_WRAPPED_VAR(type,name) extern type NCURSES_PUBLIC_VAR(name)(void)
85
86#endif /* NCURSES_DLL_H_incl */