/usr/include/psurface/psurfaceAPI.h is in libpsurface-dev 2.0.0-2+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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
|