forked from priitj/whitedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wgdb.def
164 lines (164 loc) · 3.7 KB
/
wgdb.def
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
;
; Contains all functions exported by wgdb.dll
; this file should list everything declared in Db/dbapi.h
;
LIBRARY WGDB
EXPORTS
wg_attach_database
wg_attach_existing_database
wg_attach_logged_database
wg_attach_database_mode
wg_attach_logged_database_mode
wg_detach_database
wg_delete_database
wg_create_record
wg_create_raw_record
wg_delete_record
wg_get_first_record
wg_get_next_record
wg_get_first_parent
wg_get_next_parent
wg_get_record_len
wg_get_record_dataarray
wg_set_field
wg_set_new_field
wg_set_int_field
wg_set_double_field
wg_set_str_field
wg_update_atomic_field
wg_set_atomic_field
wg_add_int_atomic_field
wg_get_field
wg_get_field_type
wg_get_encoded_type
wg_free_encoded
wg_encode_null
wg_decode_null
wg_encode_int
wg_decode_int
wg_encode_double
wg_decode_double
wg_encode_fixpoint
wg_decode_fixpoint
wg_encode_date
wg_decode_date
wg_encode_time
wg_decode_time
wg_current_utcdate
wg_current_localdate
wg_current_utctime
wg_current_localtime
wg_strf_iso_datetime
wg_strp_iso_date
wg_strp_iso_time
wg_ymd_to_date
wg_hms_to_time
wg_date_to_ymd
wg_time_to_hms
wg_encode_str
wg_decode_str
wg_decode_str_lang
wg_decode_str_len
wg_decode_str_lang_len
wg_decode_str_copy
wg_decode_str_lang_copy
wg_encode_xmlliteral
wg_decode_xmlliteral_copy
wg_decode_xmlliteral_xsdtype_copy
wg_decode_xmlliteral_len
wg_decode_xmlliteral_xsdtype_len
wg_decode_xmlliteral
wg_decode_xmlliteral_xsdtype
wg_encode_uri
wg_decode_uri_copy
wg_decode_uri_prefix_copy
wg_decode_uri_len
wg_decode_uri_prefix_len
wg_decode_uri
wg_decode_uri_prefix
wg_encode_blob
wg_decode_blob_len
wg_decode_blob
wg_decode_blob_copy
wg_decode_blob_type
wg_decode_blob_type_copy
wg_decode_blob_type_len
wg_encode_record
wg_decode_record
wg_encode_char
wg_decode_char
wg_encode_var
wg_decode_var
wg_start_write
wg_end_write
wg_start_read
wg_end_read
wg_dump
wg_dump_internal
wg_import_dump
wg_attach_local_database
wg_delete_local_database
wg_print_db
wg_print_record
wg_snprint_value
wg_make_query
wg_make_query_rc
wg_fetch
wg_free_query
wg_encode_query_param_null
wg_encode_query_param_record
wg_encode_query_param_char
wg_encode_query_param_fixpoint
wg_encode_query_param_date
wg_encode_query_param_time
wg_encode_query_param_var
wg_encode_query_param_int
wg_encode_query_param_double
wg_encode_query_param_str
wg_encode_query_param_xmlliteral
wg_encode_query_param_uri
wg_free_query_param
wg_export_db_csv
wg_import_db_csv
wg_register_external_db
wg_encode_external_data
wg_create_index
wg_create_multi_index
wg_drop_index
wg_column_to_index_id
wg_multi_column_to_index_id
wg_get_index_type
wg_get_index_template
wg_get_all_indexes
wg_parse_json_file
wg_check_json
wg_parse_json_document
wg_parse_json_fragment
wg_replay_log
wg_start_logging
wg_stop_logging
wg_database_size
wg_database_freesize
wg_set_error_callback
wg_unset_error_callback
; this is a temporary hack to search a hash index under Windows
wg_search_hash
; non-API functions (not in dbapi.h) needed to link wgdb.exe
wg_parse_and_encode
wg_get_rec_owner
wg_attach_memsegment
wg_check_header_compat
wg_print_code_version
wg_print_header_version
wg_check_dump
wg_parse_and_encode_param
wg_delete_document
wg_parse_json_param
wg_make_json_query
wg_print_json_document
wg_pretty_print_memsize
wg_memmode
wg_memowner
wg_memgroup
wg_journal_filename
; end of wgdb.exe related exports