Server IP : 103.119.228.120 / Your IP : 18.227.0.57 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/enchant/ |
Upload File : |
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* enchant * Copyright (C) 2003 Dom Lachowicz * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * 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 02110-1301, USA. * * In addition, as a special exception, Dom Lachowicz * gives permission to link the code of this program with * non-LGPL Spelling Provider libraries (eg: a MSFT Office * spell checker backend) and distribute linked combinations including * the two. You must obey the GNU Lesser General Public License in all * respects for all of the code used other than said providers. If you modify * this file, you may extend this exception to your version of the * file, but you are not obligated to do so. If you do not wish to * do so, delete this exception statement from your version. */ #ifndef ENCHANT_PROVIDER_H #define ENCHANT_PROVIDER_H #include <enchant.h> #include <glib.h> #include <stdio.h> #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include <windows.h> #endif #ifdef __cplusplus extern "C" { #endif /* private */ ENCHANT_MODULE_EXPORT(char *) enchant_get_user_language(void); #ifdef _WIN32 #define ENCHANT_PLUGIN_DECLARE(name) static HANDLE s_hModule = (HANDLE)(NULL); BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { s_hModule = hModule; return TRUE; } #else #define ENCHANT_PLUGIN_DECLARE(name) #endif typedef struct str_enchant_provider EnchantProvider; ENCHANT_MODULE_EXPORT (GSList *) enchant_get_user_config_dirs (void); ENCHANT_MODULE_EXPORT (char *) enchant_get_registry_value (const char * const prefix, const char * const key); ENCHANT_MODULE_EXPORT(char *) enchant_get_prefix_dir(void); ENCHANT_MODULE_EXPORT(void) enchant_dict_set_error (EnchantDict * dict, const char * const err); ENCHANT_MODULE_EXPORT(void) enchant_provider_set_error (EnchantProvider * provider, const char * const err); ENCHANT_MODULE_EXPORT(FILE *) enchant_fopen (const gchar *filename, const gchar *mode); ENCHANT_MODULE_EXPORT (GSList *) enchant_get_dirs_from_param (EnchantBroker * broker, const char * const param_name); struct str_enchant_dict { void *user_data; void *enchant_private_data; int (*check) (struct str_enchant_dict * me, const char *const word, size_t len); /* returns utf8*/ char **(*suggest) (struct str_enchant_dict * me, const char *const word, size_t len, size_t * out_n_suggs); void (*add_to_personal) (struct str_enchant_dict * me, const char *const word, size_t len); void (*add_to_session) (struct str_enchant_dict * me, const char *const word, size_t len); void (*store_replacement) (struct str_enchant_dict * me, const char *const mis, size_t mis_len, const char *const cor, size_t cor_len); void (*add_to_exclude) (struct str_enchant_dict * me, const char *const word, size_t len); void * _reserved[5]; }; struct str_enchant_provider { void *user_data; void *enchant_private_data; EnchantBroker * owner; void (*dispose) (struct str_enchant_provider * me); EnchantDict *(*request_dict) (struct str_enchant_provider * me, const char *const tag); void (*dispose_dict) (struct str_enchant_provider * me, EnchantDict * dict); int (*dictionary_exists) (struct str_enchant_provider * me, const char *const tag); /* returns utf8*/ const char * (*identify) (struct str_enchant_provider * me); /* returns utf8*/ const char * (*describe) (struct str_enchant_provider * me); /* frees string lists returned by list_dicts and dict->suggest */ void (*free_string_list) (struct str_enchant_provider * me, char **str_list); char ** (*list_dicts) (struct str_enchant_provider * me, size_t * out_n_dicts); void * _reserved[5]; }; #ifdef __cplusplus } #endif #endif /* ENCHANT_H */