Sha256: 199d4edaa2eaf4d1d379475dba9d9a73dd0c7682262ee1fcd47bc0e7da181726

Contents?: true

Size: 992 Bytes

Versions: 162

Compression:

Stored size: 992 Bytes

Contents

/*
 * Summary: macros for marking symbols as exportable/importable.
 * Description: macros for marking symbols as exportable/importable.
 *
 * Copy: See Copyright for the status of this software.
 */

#ifndef __XML_EXPORTS_H__
#define __XML_EXPORTS_H__

/** DOC_DISABLE */
#if defined(_WIN32) || defined(__CYGWIN__)
  #ifdef LIBXML_STATIC
    #define XMLPUBLIC
  #elif defined(IN_LIBXML)
    #define XMLPUBLIC __declspec(dllexport)
  #else
    #define XMLPUBLIC __declspec(dllimport)
  #endif
#else /* not Windows */
  #define XMLPUBLIC
#endif /* platform switch */
/** DOC_ENABLE */

/*
 * XMLPUBFUN:
 *
 * Macro which declares an exportable function
 */
#define XMLPUBFUN XMLPUBLIC

/**
 * XMLPUBVAR:
 *
 * Macro which declares an exportable variable
 */
#define XMLPUBVAR XMLPUBLIC extern

/** DOC_DISABLE */
/* Compatibility */
#define XMLCALL
#define XMLCDECL
#if !defined(LIBXML_DLL_IMPORT)
#define LIBXML_DLL_IMPORT XMLPUBVAR
#endif
/** DOC_ENABLE */

#endif /* __XML_EXPORTS_H__ */


Version data entries

162 entries across 162 versions & 8 rubygems

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.1.0/gems/nokogiri-1.16.7-x86_64-darwin/ext/nokogiri/include/libxml2/libxml/xmlexports.h
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/nokogiri-1.16.6-x86_64-linux/ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-x86-mingw32 ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-x86-linux ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-x86_64-linux ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-x86_64-darwin ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-x64-mingw-ucrt ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-x64-mingw32 ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-arm-linux ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-arm64-darwin ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.15.7-aarch64-linux ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-x86-mingw32 ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-x86-linux ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-x86_64-linux ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-x86_64-darwin ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-x64-mingw-ucrt ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-x64-mingw32 ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-arm-linux ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-arm64-darwin ext/nokogiri/include/libxml2/libxml/xmlexports.h
nokogiri-1.16.8-aarch64-linux ext/nokogiri/include/libxml2/libxml/xmlexports.h