mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
creating stubs for echant ext
This commit is contained in:
parent
a3abbc0920
commit
75a3213d19
@ -26,6 +26,7 @@
|
||||
#include "ext/standard/info.h"
|
||||
#include <enchant.h>
|
||||
#include "php_enchant.h"
|
||||
#include "enchant_arginfo.h"
|
||||
|
||||
typedef EnchantBroker * EnchantBrokerPtr;
|
||||
typedef struct _broker_struct enchant_broker;
|
||||
@ -59,63 +60,6 @@ static int le_enchant_dict;
|
||||
#define PHP_ENCHANT_MYSPELL 1
|
||||
#define PHP_ENCHANT_ISPELL 2
|
||||
|
||||
/* {{{ arginfo */
|
||||
ZEND_BEGIN_ARG_INFO(arginfo_enchant_broker_init, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_free, 0, 0, 1)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_set_dict_path, 0, 0, 3)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_INFO(0, name)
|
||||
ZEND_ARG_INFO(0, value)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_get_dict_path, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_INFO(0, name)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_request_dict, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_INFO(0, tag)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_request_pwl_dict, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_INFO(0, filename)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_free_dict, 0, 0, 1)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_set_ordering, 0, 0, 3)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_INFO(0, tag)
|
||||
ZEND_ARG_INFO(0, ordering)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_dict_quick_check, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_ARG_INFO(0, word)
|
||||
ZEND_ARG_INFO(1, suggestions)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_dict_check, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_ARG_INFO(0, word)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_dict_store_replacement, 0, 0, 3)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_ARG_INFO(0, mis)
|
||||
ZEND_ARG_INFO(0, cor)
|
||||
ZEND_END_ARG_INFO()
|
||||
/* }}} */
|
||||
|
||||
/* {{{ enchant_functions[]
|
||||
*
|
||||
* Every user visible function must have an entry in enchant_functions[].
|
||||
@ -123,24 +67,24 @@ ZEND_END_ARG_INFO()
|
||||
static const zend_function_entry enchant_functions[] = {
|
||||
PHP_FE(enchant_broker_init, arginfo_enchant_broker_init)
|
||||
PHP_FE(enchant_broker_free, arginfo_enchant_broker_free)
|
||||
PHP_FE(enchant_broker_get_error, arginfo_enchant_broker_free)
|
||||
PHP_FE(enchant_broker_get_error, arginfo_enchant_broker_get_error)
|
||||
PHP_FE(enchant_broker_set_dict_path, arginfo_enchant_broker_set_dict_path)
|
||||
PHP_FE(enchant_broker_get_dict_path, arginfo_enchant_broker_get_dict_path)
|
||||
PHP_FE(enchant_broker_list_dicts, arginfo_enchant_broker_free)
|
||||
PHP_FE(enchant_broker_list_dicts, arginfo_enchant_broker_list_dicts)
|
||||
PHP_FE(enchant_broker_request_dict, arginfo_enchant_broker_request_dict)
|
||||
PHP_FE(enchant_broker_request_pwl_dict, arginfo_enchant_broker_request_pwl_dict)
|
||||
PHP_FE(enchant_broker_free_dict, arginfo_enchant_broker_free_dict)
|
||||
PHP_FE(enchant_broker_dict_exists, arginfo_enchant_broker_request_dict)
|
||||
PHP_FE(enchant_broker_dict_exists, arginfo_enchant_broker_dict_exists)
|
||||
PHP_FE(enchant_broker_set_ordering, arginfo_enchant_broker_set_ordering)
|
||||
PHP_FE(enchant_broker_describe, arginfo_enchant_broker_free)
|
||||
PHP_FE(enchant_broker_describe, arginfo_enchant_broker_describe)
|
||||
PHP_FE(enchant_dict_check, arginfo_enchant_dict_check)
|
||||
PHP_FE(enchant_dict_suggest, arginfo_enchant_dict_check)
|
||||
PHP_FE(enchant_dict_add_to_personal, arginfo_enchant_dict_check)
|
||||
PHP_FE(enchant_dict_add_to_session, arginfo_enchant_dict_check)
|
||||
PHP_FE(enchant_dict_is_in_session, arginfo_enchant_dict_check)
|
||||
PHP_FE(enchant_dict_suggest, arginfo_enchant_dict_suggest)
|
||||
PHP_FE(enchant_dict_add_to_personal, arginfo_enchant_dict_add_to_personal)
|
||||
PHP_FE(enchant_dict_add_to_session, arginfo_enchant_dict_add_to_session)
|
||||
PHP_FE(enchant_dict_is_in_session, arginfo_enchant_dict_is_in_session)
|
||||
PHP_FE(enchant_dict_store_replacement, arginfo_enchant_dict_store_replacement)
|
||||
PHP_FE(enchant_dict_get_error, arginfo_enchant_broker_free_dict)
|
||||
PHP_FE(enchant_dict_describe, arginfo_enchant_broker_free_dict)
|
||||
PHP_FE(enchant_dict_get_error, arginfo_enchant_dict_get_error)
|
||||
PHP_FE(enchant_dict_describe, arginfo_enchant_dict_describe)
|
||||
PHP_FE(enchant_dict_quick_check, arginfo_enchant_dict_quick_check)
|
||||
PHP_FE_END
|
||||
};
|
||||
|
79
ext/enchant/enchant.stub.php
Normal file
79
ext/enchant/enchant.stub.php
Normal file
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
|
||||
/** @return resource|false */
|
||||
function enchant_broker_init() {}
|
||||
|
||||
/** @param resource $broker */
|
||||
function enchant_broker_free($broker): bool {}
|
||||
|
||||
/**
|
||||
* @param resource $broker
|
||||
* @return string|false
|
||||
*/
|
||||
function enchant_broker_get_error($broker) {}
|
||||
|
||||
/** @param resource $broker */
|
||||
function enchant_broker_set_dict_path($broker, int $name, string $value): bool {}
|
||||
|
||||
/**
|
||||
* @param resource $broker
|
||||
* @return string|false
|
||||
*/
|
||||
function enchant_broker_get_dict_path($broker, int $name) {}
|
||||
|
||||
/** @param resource $broker */
|
||||
function enchant_broker_list_dicts($broker): array {}
|
||||
|
||||
/**
|
||||
* @param resource $broker
|
||||
* @return resource|false
|
||||
*/
|
||||
function enchant_broker_request_dict($broker, string $tag) {}
|
||||
|
||||
/**
|
||||
* @param resource $broker
|
||||
* @return resource|false
|
||||
*/
|
||||
function enchant_broker_request_pwl_dict($broker, string $filename) {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_broker_free_dict($dict): bool {}
|
||||
|
||||
/** @param resource $broker */
|
||||
function enchant_broker_dict_exists($broker, string $tag): bool {}
|
||||
|
||||
/** @param resource $broker */
|
||||
function enchant_broker_set_ordering($broker, string $tag, string $ordering): bool {}
|
||||
|
||||
/** @param resource $broker */
|
||||
function enchant_broker_describe($broker): array {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_dict_quick_check($dict, string $word, &$suggestions = UNKNOWN): bool {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_dict_check($dict, string $word): bool {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_dict_suggest($dict, string $word): ?array {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_dict_add_to_personal($dict, string $word): void {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_dict_add_to_session($dict, string $word): void {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_dict_is_in_session($dict, string $word): bool {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_dict_store_replacement($dict, string $mis, string $cor): void {}
|
||||
|
||||
/**
|
||||
* @param resource $dict
|
||||
* @return string|false
|
||||
*/
|
||||
function enchant_dict_get_error($dict) {}
|
||||
|
||||
/** @param resource $dict */
|
||||
function enchant_dict_describe($dict): array {}
|
93
ext/enchant/enchant_arginfo.h
Normal file
93
ext/enchant/enchant_arginfo.h
Normal file
@ -0,0 +1,93 @@
|
||||
/* This is a generated file, edit the .stub.php file instead. */
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_init, 0, 0, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_broker_free, 0, 1, _IS_BOOL, 0)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_get_error, 0, 0, 1)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_broker_set_dict_path, 0, 3, _IS_BOOL, 0)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_TYPE_INFO(0, name, IS_LONG, 0)
|
||||
ZEND_ARG_TYPE_INFO(0, value, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_get_dict_path, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_TYPE_INFO(0, name, IS_LONG, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_broker_list_dicts, 0, 1, IS_ARRAY, 0)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_request_dict, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_TYPE_INFO(0, tag, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_broker_request_pwl_dict, 0, 0, 2)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_TYPE_INFO(0, filename, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_broker_free_dict, 0, 1, _IS_BOOL, 0)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_broker_dict_exists, 0, 2, _IS_BOOL, 0)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_TYPE_INFO(0, tag, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_broker_set_ordering, 0, 3, _IS_BOOL, 0)
|
||||
ZEND_ARG_INFO(0, broker)
|
||||
ZEND_ARG_TYPE_INFO(0, tag, IS_STRING, 0)
|
||||
ZEND_ARG_TYPE_INFO(0, ordering, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
#define arginfo_enchant_broker_describe arginfo_enchant_broker_list_dicts
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_dict_quick_check, 0, 2, _IS_BOOL, 0)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_ARG_TYPE_INFO(0, word, IS_STRING, 0)
|
||||
ZEND_ARG_INFO(1, suggestions)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_dict_check, 0, 2, _IS_BOOL, 0)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_ARG_TYPE_INFO(0, word, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_dict_suggest, 0, 2, IS_ARRAY, 1)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_ARG_TYPE_INFO(0, word, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_dict_add_to_personal, 0, 2, IS_VOID, 0)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_ARG_TYPE_INFO(0, word, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
#define arginfo_enchant_dict_add_to_session arginfo_enchant_dict_add_to_personal
|
||||
|
||||
#define arginfo_enchant_dict_is_in_session arginfo_enchant_dict_check
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_dict_store_replacement, 0, 3, IS_VOID, 0)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_ARG_TYPE_INFO(0, mis, IS_STRING, 0)
|
||||
ZEND_ARG_TYPE_INFO(0, cor, IS_STRING, 0)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_enchant_dict_get_error, 0, 0, 1)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_enchant_dict_describe, 0, 1, IS_ARRAY, 0)
|
||||
ZEND_ARG_INFO(0, dict)
|
||||
ZEND_END_ARG_INFO()
|
Loading…
Reference in New Issue
Block a user