summaryrefslogtreecommitdiff
path: root/bindings/gsoap/gsoapsword.h
blob: a62da7221d82d8d2e058af787d97214308f7f684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/******************************************************************************
 *
 *  gsoapsword.h -	
 *
 * $Id: gsoapsword.h 2833 2013-06-29 06:40:28Z chrislit $
 *
 * Copyright 2002-2013 CrossWire Bible Society (http://www.crosswire.org)
 *	CrossWire Bible Society
 *	P. O. Box 2528
 *	Tempe, AZ  85280-2528
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation version 2.
 *
 * This program 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
 * General Public License for more details.
 *
 */

#ifndef GSOAPAPI_H
#define GSOAPAPI_H

typedef long xsd__int;
typedef char * xsd__string;

//-----------------------------------------------------------------
// stringlist_iterator methods

//int sword__stringlist_iterator_next(xsd__int hsli char **);
//int sword__stringlist_iterator_val(xsd__int hsli, char **);


//-----------------------------------------------------------------
// modmap methods
//
int sword__ModList_iterator_next(xsd__int hmmi, xsd__int &noop);
int sword__ModList_iterator_val(xsd__int hmmi, xsd__int &hmodule);


//-----------------------------------------------------------------
// SWMgr methods
//
int sword__SWMgr_new(xsd__int &retVal);
// SWConfig *, SWConfig *, bool, SWFilterMgr *
//xsd__int sword__SWMgr_newEx(xsd__int hiconfig, xsd__int hisysconfig, char autoload, xsd__int hfilterMgr);
int sword__SWMgr_delete(xsd__int hmgr, xsd__int &noop);
//xsd__int sword__SWMgr_getConfig(xsd__int hmgr);
int sword__SWMgr_getModulesIterator(xsd__int hmgr, xsd__int &hmodIterator);
int sword__SWMgr_getModuleByName(xsd__int hmgr, xsd__string name, xsd__int &hmodule);
//char *   sword__SWMgr_getPrefixPath(xsd__int hmgr);
//char *   sword__SWMgr_getConfigPath(xsd__int hmgr);
//void     sword__SWMgr_setGlobalOption(xsd__int hmgr, char *option, char *value);
//char *   sword__SWMgr_getGlobalOption(xsd__int hmgr, char *option);
//char *   sword__SWMgr_getGlobalOptionTip(xsd__int hmgr, char *option);
// ret: forward_iterator
//xsd__int sword__SWMgr_getGlobalOptionsIterator(xsd__int hmgr);
// ret: forward_iterator
//xsd__int sword__SWMgr_getGlobalOptionValuesIterator(xsd__int hmgr, char *option);
//void     sword__SWMgr_setCipherKey(xsd__int hmgr, char *modName, char *key);


//-----------------------------------------------------------------
// SWModule methods

//void  sword__SWModule_terminateSearch(xsd__int hmodule);
//char  sword__SWModule_error(xsd__int hmodule);
//int   sword__SWModule_getEntrySize(xsd__int hmodule);
//void  sword__SWModule_setKeyText(xsd__int hmodule, char *key);
//char *sword__SWModule_getKeyText(xsd__int hmodule);
int sword__SWModule_getName(xsd__int hmodule, xsd__string &name);
int sword__SWModule_getDescription(xsd__int hmodule, xsd__string &description);
//char *sword__SWModule_getType(xsd__int hmodule);
//void  sword__SWModule_previous(xsd__int hmodule);
//void  sword__SWModule_next(xsd__int hmodule);
//void  sword__SWModule_begin(xsd__int hmodule);
//char *sword__SWModule_getStripText(xsd__int hmodule);
//char *sword__SWModule_getRenderText(xsd__int hmodule);


int sword__Quick_getModuleRawEntry(xsd__string modName, xsd__string modKey, xsd__string &modText);
int sword__Quick_setModuleRawEntry(xsd__string modName, xsd__string modKey, xsd__string modText, xsd__int &noop);
int sword__Quick_getModuleRenderText(xsd__string modName, xsd__string modKey, xsd__string &modText);
int sword__Quick_getJScriptAttribArray(xsd__string modName, xsd__string modKey, xsd__string &arrayText);
#endif