1997-04-02 03:18:28 +08:00
|
|
|
/* foo.h -- interface to the libfoo library
|
1998-12-31 19:25:57 +08:00
|
|
|
Copyright (C) 1996-1999 Free Software Foundation, Inc.
|
1997-04-02 03:19:30 +08:00
|
|
|
Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
|
1997-04-02 03:53:01 +08:00
|
|
|
This file is part of GNU Libtool.
|
1997-04-02 03:18:28 +08:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
1997-07-04 02:20:39 +08:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
USA. */
|
1997-04-02 03:18:28 +08:00
|
|
|
|
1997-04-02 03:19:30 +08:00
|
|
|
/* Only include this header file once. */
|
|
|
|
#ifndef _FOO_H_
|
1997-04-02 03:21:43 +08:00
|
|
|
#define _FOO_H_ 1
|
1997-04-02 03:19:30 +08:00
|
|
|
|
1998-12-21 21:04:14 +08:00
|
|
|
/* At some point, cygwin will stop defining __CYGWIN32__, but b19 and
|
|
|
|
* earlier do not define __CYGWIN__. This snippit allows us to check
|
|
|
|
* for __CYGWIN32__ reliably for both old and (probable) future releases.
|
|
|
|
*/
|
|
|
|
#ifdef __CYGWIN__
|
|
|
|
# ifndef __CYGWIN32__
|
|
|
|
# define __CYGWIN32__
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
1997-06-11 02:21:04 +08:00
|
|
|
/* __BEGIN_DECLS should be used at the beginning of your declarations,
|
|
|
|
so that C++ compilers don't mangle their names. Use __END_DECLS at
|
|
|
|
the end of C declarations. */
|
1997-04-02 03:21:43 +08:00
|
|
|
#undef __BEGIN_DECLS
|
|
|
|
#undef __END_DECLS
|
|
|
|
#ifdef __cplusplus
|
|
|
|
# define __BEGIN_DECLS extern "C" {
|
|
|
|
# define __END_DECLS }
|
|
|
|
#else
|
|
|
|
# define __BEGIN_DECLS /* empty */
|
|
|
|
# define __END_DECLS /* empty */
|
1997-04-02 03:19:30 +08:00
|
|
|
#endif
|
|
|
|
|
1999-05-21 19:47:21 +08:00
|
|
|
/* LTDL_PARAMS is a macro used to wrap function prototypes, so that compilers
|
1997-06-07 05:55:10 +08:00
|
|
|
that don't understand ANSI C prototypes still work, and ANSI C
|
|
|
|
compilers can issue warnings about type mismatches. */
|
1999-05-21 19:47:21 +08:00
|
|
|
#undef LTDL_PARAMS
|
1998-12-21 21:04:14 +08:00
|
|
|
#if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4)) || defined(__CYGWIN32__) || defined(__cplusplus)
|
1999-05-21 19:47:21 +08:00
|
|
|
# define LTDL_PARAMS(protos) protos
|
1999-01-14 05:39:14 +08:00
|
|
|
# define lt_ptr_t void*
|
1997-04-02 03:21:43 +08:00
|
|
|
#else
|
1999-05-21 19:47:21 +08:00
|
|
|
# define LTDL_PARAMS(protos) ()
|
1999-01-14 05:39:14 +08:00
|
|
|
# define lt_ptr_t char*
|
1997-04-02 03:19:30 +08:00
|
|
|
#endif
|
1997-04-02 03:18:28 +08:00
|
|
|
|
1998-12-21 21:04:14 +08:00
|
|
|
#ifdef __CYGWIN32__
|
1999-05-17 21:30:44 +08:00
|
|
|
# ifdef LIBFOO_DLL
|
|
|
|
/* need some (as yet non-existant) automake magic to tell
|
|
|
|
* the object whether the libfoo it will be linked with is
|
|
|
|
* a dll or not, ie whether LIBFOO_DLL is defined or not.
|
|
|
|
*/
|
|
|
|
# ifdef _LIBFOO_COMPILATION_
|
|
|
|
# define EXTERN __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define EXTERN extern __declspec(dllimport)
|
|
|
|
# endif
|
1998-12-21 21:04:14 +08:00
|
|
|
# else
|
1999-05-17 21:30:44 +08:00
|
|
|
# define EXTERN extern
|
1998-12-21 21:04:14 +08:00
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
1997-04-02 03:18:28 +08:00
|
|
|
/* Silly constants that the functions return. */
|
|
|
|
#define HELLO_RET 0xe110
|
|
|
|
#define FOO_RET 0xf00
|
|
|
|
|
1998-12-21 21:04:14 +08:00
|
|
|
|
1997-04-02 03:53:01 +08:00
|
|
|
/* Declarations. Note the wonderful use of the above macros. */
|
1997-04-02 03:19:30 +08:00
|
|
|
__BEGIN_DECLS
|
1999-05-21 19:47:21 +08:00
|
|
|
int foo LTDL_PARAMS((void));
|
|
|
|
int hello LTDL_PARAMS((void));
|
1998-12-21 21:04:14 +08:00
|
|
|
EXTERN int nothing;
|
1997-04-02 03:19:30 +08:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* !_FOO_H_ */
|