File: psurfaceAPI.h

package info (click to toggle)
psurface 2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,092 kB
  • sloc: cpp: 12,339; makefile: 111; awk: 38
file content (22 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/***************************************************************
 *
 * DLL export/import definitions for Windows
 *
 ***************************************************************/
#ifndef PSURFACE_WIN_DLL_API_H
#define PSURFACE_WIN_DLL_API_H

#ifdef HX_OS_WIN
    #ifdef PSURFACE_EXPORTS
        #define PSURFACE_API __declspec(dllexport)
    #else
        #define PSURFACE_API __declspec(dllimport)
    #endif

    #define PSURFACE_EXPORT __declspec(dllexport)
#else
    #define PSURFACE_API
    #define PSURFACE_EXPORT
#endif

#endif