~ari-tczew/ubuntu/natty/clementine/lp-747113

« back to all changes in this revision

Viewing changes to 3rdparty/libportfwd/third-party/libnatpmp/declspec.h

  • Committer: Artur Rona
  • Date: 2011-04-04 20:05:33 UTC
  • Revision ID: ari-tczew@ubuntu.com-20110404200533-6aclzasj5pp8t1hq
* New upstream release. (LP: #747113)
* Drop all patches, have been applied upstream.
* Update debian/copyright.
* Refresh description in debian/control in order to avoid lintian error.
* Bump debhelper to 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __DECLSPEC_H__
 
2
#define __DECLSPEC_H__
 
3
 
 
4
#if defined(WIN32) && !defined(STATICLIB)
 
5
        #ifdef NATPMP_EXPORTS
 
6
                #define LIBSPEC __declspec(dllexport)
 
7
        #else
 
8
                #define LIBSPEC __declspec(dllimport)
 
9
        #endif
 
10
#else
 
11
        #define LIBSPEC
 
12
#endif
 
13
 
 
14
#endif
 
15