b838c505a4
RagePhoto.h -> RagePhoto.hpp RagePhotoA.h -> RagePhotoA.hpp RagePhotoC.h -> RagePhoto.h unicode.cmake: exclude codecvt for C builds GitHub Actions: separate C and CXX builds
68 lines
2.2 KiB
C
68 lines
2.2 KiB
C
/*****************************************************************************
|
|
* libragephoto RAGE Photo Parser
|
|
* Copyright (C) 2023 Syping
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* This software is provided as-is, no warranties are given to you, we are not
|
|
* responsible for anything with use of the software, you are self responsible.
|
|
*****************************************************************************/
|
|
|
|
#ifndef RAGEPHOTOLIBRARY_H
|
|
#define RAGEPHOTOLIBRARY_H
|
|
|
|
#include "RagePhotoConfig.h"
|
|
|
|
/* RAGEPHOTO LIBRARY BINDING BEGIN */
|
|
#ifdef _WIN32
|
|
#ifndef LIBRAGEPHOTO_STATIC
|
|
#ifdef LIBRAGEPHOTO_LIBRARY
|
|
#define LIBRAGEPHOTO_C_PUBLIC __declspec(dllexport)
|
|
#define LIBRAGEPHOTO_CXX_PUBLIC __declspec(dllexport)
|
|
#else
|
|
#define LIBRAGEPHOTO_C_PUBLIC __declspec(dllimport)
|
|
#define LIBRAGEPHOTO_CXX_PUBLIC __declspec(dllimport)
|
|
#endif // LIBRAGEPHOTO_LIBRARY
|
|
#else
|
|
#define LIBRAGEPHOTO_C_PUBLIC
|
|
#define LIBRAGEPHOTO_CXX_PUBLIC
|
|
#endif // LIBRAGEPHOTO_STATIC
|
|
#else
|
|
#ifdef __EMSCRIPTEN__
|
|
#include <emscripten/emscripten.h>
|
|
#define LIBRAGEPHOTO_C_PUBLIC EMSCRIPTEN_KEEPALIVE
|
|
#define LIBRAGEPHOTO_CXX_PUBLIC
|
|
#else
|
|
#ifdef __GNUC__
|
|
#ifndef LIBRAGEPHOTO_STATIC
|
|
#define LIBRAGEPHOTO_C_PUBLIC __attribute__((visibility("default")))
|
|
#define LIBRAGEPHOTO_CXX_PUBLIC __attribute__((visibility("default")))
|
|
#else
|
|
#define LIBRAGEPHOTO_C_PUBLIC
|
|
#define LIBRAGEPHOTO_CXX_PUBLIC
|
|
#endif // LIBRAGEPHOTO_STATIC
|
|
#else
|
|
#define LIBRAGEPHOTO_C_PUBLIC
|
|
#define LIBRAGEPHOTO_CXX_PUBLIC
|
|
#endif // __GNUC__
|
|
#endif // __EMSCRIPTEN__
|
|
#endif // _WIN32
|
|
/* RAGEPHOTO LIBRARY BINDING END */
|
|
|
|
/* ENABLE C API FOR RAGEPHOTO WASM LIBRARY BEGIN */
|
|
#ifdef LIBRAGEPHOTO_WASM
|
|
#ifndef RAGEPHOTO_C_API
|
|
#define RAGEPHOTO_C_API
|
|
#endif // RAGEPHOTO_C_API
|
|
#endif // LIBRAGEPHOTO_WASM
|
|
/* ENABLE C API FOR RAGEPHOTO WASM LIBRARY END */
|
|
|
|
#endif // RAGEPHOTOLIBRARY_H
|