mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 11:11:21 +00:00
* GSWeb.framework/GSWeb.h: Include GSWDefines.h. * GSWeb.framework/GSWApplication.h: Use GSW_EXPORT instead of export. Fixed some whitespace issues. * GSWeb.framework/GSWBaseParser.h: Ditto. * GSWeb.framework/GSWConstants.h: Ditto. * GSWeb.framework/GSWDebug.h: Ditto. * GSWeb.framework/GSWDefaultAdaptor.h: Ditto. * GSWeb.framework/GSWElement.h: Ditto. * GSWeb.framework/GSWHTMLAttrLexer.h: Ditto. * GSWeb.framework/GSWHTMLAttrParser.h: Ditto. * GSWeb.framework/GSWHTMLLexer.h: Ditto. * GSWeb.framework/GSWHTMLParser.h: Ditto. * GSWeb.framework/GSWPageDefLexer.h: Ditto. * GSWeb.framework/GSWPageDefParser.h: Ditto. * GSWeb.framework/GSWResourceManager.h: Ditto. * GSWeb.framework/GSWUtils.h: Ditto. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19247 72102866-910b-0410-8b05-ffd578937521
48 lines
1.4 KiB
Objective-C
48 lines
1.4 KiB
Objective-C
/* -*-objc-*-
|
|
GSWDefines.h
|
|
|
|
Copyright (C) 2004 Free Software Foundation, Inc.
|
|
|
|
Author: Sung Jin Chun <chunsj@embian.com>
|
|
|
|
This file is part of the GNUstepWeb Library.
|
|
|
|
This library 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 of the License, or (at your option) any later version.
|
|
|
|
This library 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 this library; see the file COPYING.LIB.
|
|
If not, write to the Free Software Foundation,
|
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __GSWeb_GSWDefines_h__
|
|
#define __GSWeb_GSWDefines_h__
|
|
|
|
#ifdef GNUSTEP_WITH_DLL
|
|
|
|
#if BUILD_GSWeb_DLL
|
|
# define GSWEB_EXPORT __declspec(dllexport)
|
|
# define GSWEB_DECLARE __declspec(dllexport)
|
|
#else
|
|
# define GSWEB_EXPORT extern __declspec(dllimport)
|
|
# define GSWEB_DECLARE __declspec(dllimport)
|
|
#endif
|
|
|
|
#else /* GNUSTEP_WITH[OUT]_DLL */
|
|
|
|
# define GSWEB_EXPORT extern
|
|
# define GSWEB_DECLARE
|
|
|
|
#endif
|
|
|
|
|
|
#endif /* __GSWeb_GSWDefines_h__ */
|
|
|