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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/* There has to be at least one line preceding the next one*/
/********************** crop here for forms.h **********************/
/*
*
* This file is part of the XForms library package.
*
* XForms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1, or
* (at your option) any later version.
*
* XForms 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with XForms. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file forms.h
*
*. All XForms files as distributed in this package are
* Copyright(c) 1996-2002 by T.C. Zhao and Mark Overmars,
* with part of the code Copyright (c) 1999-2002 by T.C. Zhao
* and Steve Lamont.
* ALL RIGHTS RESERVED.
*
* Permission to use, copy, and distribute this software in its entirety
* without fee, is hereby granted, provided that the above copyright
* notice and this permission notice appear in all copies and their
* documentation.
*
* As of April 2002, xforms is released under the GNU LGPL license.
* You can use xforms for any purpose that's compatible with
* LGPL with the restriction that you will need a special license
* for distributed binary commercial software that requires or is
* based on xforms or its derivative.
*
* This software is provided "as is" without expressed or implied
* warranty of any kind.
*
* The homepage for XForms is at
* https://savannah.nongnu.org/projects/xforms/
*
* If you have questions about XForms or encounter problems please
* subscribe to the mailing list at
* http://cweblog.usuhs.mil/mailman/listinfo/xforms
*
* ******** This file is generated automatically. DO NOT CHANGE *********
*/
#ifndef FL_FORMS_H
#define FL_FORMS_H
#define FL_VERSION @FL_VERSION@
#define FL_REVISION @FL_REVISION@
#define FL_FIXLEVEL "@FL_FIXLEVEL@"
#define FL_INCLUDE_VERSION ( FL_VERSION * 1000 + FL_REVISION )
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <limits.h>
#if defined __cplusplus
extern "C"
{
#endif
#if defined _WIN32
#define FL_WIN32
#include <windows.h>
#endif
#if ! defined FL_WIN32 || ! defined SHARED_LIB
#define FL_EXPORT extern
#else
#ifdef MAKING_FORMS
#define FL_EXPORT __declspec( dllexport ) extern
#else
#define FL_EXPORT __declspec( dllimport ) extern
#endif /* MAKING_FORMS */
#endif /* FL_WIN32 */
|