Sha256: c1b73eb61600b56556eb82247add69950a47c057ba644e1e2212e444e28719de
Contents?: true
Size: 1.38 KB
Versions: 5
Compression:
Stored size: 1.38 KB
Contents
/* -*- c-basic-offset: 2 -*- */ /* Copyright(C) 2010 Brazil This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef GRN_PLUGIN_H #define GRN_PLUGIN_H #include "groonga.h" #ifdef __cplusplus extern "C" { #endif #define GRN_PLUGIN_INIT grn_plugin_impl_init #define GRN_PLUGIN_REGISTER grn_plugin_impl_register #define GRN_PLUGIN_FIN grn_plugin_impl_fin #if defined(_WIN32) || defined(_WIN64) # define GRN_PLUGIN_EXPORT __declspec(dllexport) #else /* defined(_WIN32) || defined(_WIN64) */ # define GRN_PLUGIN_EXPORT #endif /* defined(_WIN32) || defined(_WIN64) */ GRN_PLUGIN_EXPORT grn_rc GRN_PLUGIN_INIT(grn_ctx *ctx); GRN_PLUGIN_EXPORT grn_rc GRN_PLUGIN_REGISTER(grn_ctx *ctx); GRN_PLUGIN_EXPORT grn_rc GRN_PLUGIN_FIN(grn_ctx *ctx); #ifdef __cplusplus } #endif #endif /* GRN_PLUGIN_H */
Version data entries
5 entries across 5 versions & 1 rubygems