home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / wv2 / dllmagic.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-08-07  |  959 b   |  29 lines

  1. /* This file is part of the wvWare 2 project
  2.    Copyright (C) 2003 Werner Trobin <trobin@kde.org>
  3.  
  4.    This library is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU Library General Public
  6.    License version 2 as published by the Free Software Foundation.
  7.  
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.  
  13.    You should have received a copy of the GNU Library General Public License
  14.    along with this library; see the file COPYING.LIB.  If not, write to
  15.    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16.    Boston, MA 02111-1307, USA.
  17. */
  18.  
  19. #ifndef DLLMAGIC_H
  20. #define DLLMAGIC_H
  21.  
  22. #ifdef WV2_DLL
  23. # define WV2_DLLEXPORT __declspec(dllexport)
  24. #else
  25. # define WV2_DLLEXPORT
  26. #endif
  27.  
  28. #endif // DLLMAGIC_H
  29.