Sha256: 61c709838b0c143edb31515d68b1001c7240af6fde11789c9744c8bffd34fb84

Contents?: true

Size: 1.43 KB

Versions: 6

Compression:

Stored size: 1.43 KB

Contents

/* -*- c-basic-offset: 2 -*- */
/*
  Copyright(C) 2012-2018 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/

#pragma once

#include <groonga/plugin.h>

#ifdef __cplusplus
extern "C" {
#endif  /* __cplusplus */

/*
  grn_tokenizer_query is a structure for storing a query. See the following
  functions.

  Deprecated since 8.0.2. Use accessors to get data.
 */
typedef struct _grn_tokenizer_query_deprecated grn_tokenizer_query;

struct _grn_tokenizer_query_deprecated {
  grn_obj *normalized_query;
  char *query_buf;
  const char *ptr;
  unsigned int length;
  grn_encoding encoding;
  unsigned int flags;
  grn_bool have_tokenized_delimiter;
  /* Deprecated since 4.0.8. Use tokenize_mode instead. */
  grn_token_mode token_mode;
  grn_tokenize_mode tokenize_mode;
};

#ifdef __cplusplus
}  /* extern "C" */
#endif  /* __cplusplus */

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rroonga-9.0.7-x64-mingw32 vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h
rroonga-9.0.7-x86-mingw32 vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h
rroonga-9.0.3-x64-mingw32 vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h
rroonga-9.0.3-x86-mingw32 vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h
rroonga-9.0.2-x64-mingw32 vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h
rroonga-9.0.2-x86-mingw32 vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h