https://github.com/Kitware/CMake
Revision bdec3bd896b6faabab1c7cae79d8e75e8d0f0e41 authored by Brad King on 15 November 2018, 13:03:12 UTC, committed by Brad King on 15 November 2018, 13:08:56 UTC
1 parent 8d70ed5
Raw File
Tip revision: bdec3bd896b6faabab1c7cae79d8e75e8d0f0e41 authored by Brad King on 15 November 2018, 13:03:12 UTC
Tests: Teach RunCMake infrastructure to optionally provide stdin
Tip revision: bdec3bd
pcShared.h
#ifndef pcShared_h
#define pcShared_h

#ifdef _WIN32
#  ifdef pcShared_EXPORTS
#    define PC_EXPORT __declspec(dllexport)
#  else
#    define PC_EXPORT __declspec(dllimport)
#  endif
#else
#  define PC_EXPORT
#endif

PC_EXPORT const char* pcShared(void);

#endif
back to top