cxLss.h

// cxLss.h
//
// Author David Barrett-Lennard
// (C)opyright Cedanet Pty Ltd 2013

#pragma once
#ifndef Ceda_cxLss_cxLss_H
#define Ceda_cxLss_cxLss_H

#if defined(_WIN32) && !defined(__WINE__) && !defined(cxLss_STATIC_LIBRARY)
    #ifdef cxLss_IS_COMPILING
        // While compiling the library, export symbols
        #define cxLss_API __declspec(dllexport)
    #else
        // While #including public headers of the library, import symbols
        #define cxLss_API __declspec(dllimport)
    #endif
#else
    #define cxLss_API
#endif

#define CEDA_LSS_USE_CONTIGUOUS_SEID_SPACE 1

#endif // include guard