~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to protocols/yahoo/libkyahoo/libkyahoo_export.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
ImportĀ upstreamĀ versionĀ 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LIBKYAHOO_EXPORT_H
 
2
#define LIBKYAHOO_EXPORT_H
 
3
 
 
4
 
 
5
#include <kdemacros.h>
 
6
 
 
7
#if defined Q_OS_WIN
 
8
 
 
9
#ifndef LIBKYAHOO_EXPORT
 
10
# ifdef MAKE_KYAHOO_LIB
 
11
#  define LIBKYAHOO_EXPORT KDE_EXPORT
 
12
# else
 
13
#  define LIBKYAHOO_EXPORT KDE_IMPORT
 
14
# endif
 
15
#endif
 
16
 
 
17
#else
 
18
#define LIBKYAHOO_EXPORT KDE_EXPORT
 
19
#endif
 
20
 
 
21
#endif
 
22