source: trunk/gsdl/packages/yaz/include/yaz/yconfig.h@ 1343

Last change on this file since 1343 was 1343, checked in by johnmcp, 24 years ago

Added the YAZ toolkit source to the packages directory (for z39.50 stuff)

  • Property svn:keywords set to Author Date Id Revision
File size: 471 bytes
Line 
1/*
2 * Copyright (c) 1995-2000, Index Data.
3 * See the file LICENSE for details.
4 *
5 * $Id: yconfig.h 1343 2000-08-03 03:12:39Z johnmcp $
6 */
7
8#ifndef YCONFIG_H
9#define YCONFIG_H
10
11#ifndef YAZ_EXPORT
12# ifdef WIN32
13# define YAZ_EXPORT __declspec(dllexport)
14# else
15# define YAZ_EXPORT
16# endif
17#endif
18
19#ifndef WIN32
20# ifndef O_BINARY
21# define O_BINARY 0
22# endif
23#endif
24
25#ifdef __cplusplus
26#define YAZ_BEGIN_CDECL extern "C" {
27#define YAZ_END_CDECL }
28#else
29#define YAZ_BEGIN_CDECL
30#define YAZ_END_CDECL
31#endif
32
33#endif
Note: See TracBrowser for help on using the repository browser.