SHA256
30 lines
492 B
C
30 lines
492 B
C
#ifndef PSSPHOTO_DEFINITIONS_H
|
|
#define PSSPHOTO_DEFINITIONS_H
|
|
|
|
#ifndef PSS_CALL
|
|
# define PSS_CALL __stdcall
|
|
#endif
|
|
|
|
#if defined(__unix) || defined(__unix__)
|
|
|
|
#define PSS_DECLSPEC
|
|
|
|
#elif defined(_WIN32) || defined(__WIN32__)
|
|
|
|
# ifdef PSS_DLL_MODE
|
|
# ifdef PSS_BUILDING_DLL
|
|
# define PSS_DECLSPEC __declspec(dllexport)
|
|
# else
|
|
# define PSS_DECLSPEC __declspec(dllimport)
|
|
# endif
|
|
# else
|
|
# define PSS_DECLSPEC
|
|
# endif
|
|
|
|
#else
|
|
# error Unknow platform!
|
|
#endif
|
|
|
|
|
|
#endif //PSSPHOTO_DEFINITIONS_H
|