xref: /onnv-gate/usr/src/lib/libsqlite/mapfile-sqlite (revision 8744:03d5725cda56)
14520Snw141292#
2*8744SAli.Bahrami@Sun.COM# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
34520Snw141292# Use is subject to license terms.
44520Snw141292#
5*8744SAli.Bahrami@Sun.COM
6*8744SAli.Bahrami@Sun.COM#
7*8744SAli.Bahrami@Sun.COM# MAPFILE HEADER START
8*8744SAli.Bahrami@Sun.COM#
9*8744SAli.Bahrami@Sun.COM# WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
10*8744SAli.Bahrami@Sun.COM# Object versioning must comply with the rules detailed in
114520Snw141292#
12*8744SAli.Bahrami@Sun.COM#	usr/src/lib/README.mapfiles
13*8744SAli.Bahrami@Sun.COM#
14*8744SAli.Bahrami@Sun.COM# You should not be making modifications here until you've read the most current
15*8744SAli.Bahrami@Sun.COM# copy of that file. If you need help, contact a gatekeeper for guidance.
16*8744SAli.Bahrami@Sun.COM#
17*8744SAli.Bahrami@Sun.COM# MAPFILE HEADER END
18*8744SAli.Bahrami@Sun.COM#
19*8744SAli.Bahrami@Sun.COM
204520Snw141292#
214520Snw141292# Defines the public interface to sqlite
224520Snw141292#
234520Snw141292
244520Snw141292{
254520Snw141292    global:
264520Snw141292	# exported functions
274520Snw141292	sqlite_open;
284520Snw141292	sqlite_close;
294520Snw141292	sqlite_exec;
304520Snw141292	sqlite_last_insert_rowid;
314520Snw141292	sqlite_changes;
324520Snw141292	sqlite_last_statement_changes;
334520Snw141292	sqlite_error_string;
344520Snw141292	sqlite_interrupt;
354520Snw141292	sqlite_complete;
364520Snw141292	sqlite_busy_handler;
374520Snw141292	sqlite_busy_timeout;
384520Snw141292	sqlite_get_table;
394520Snw141292	sqlite_free_table;
404520Snw141292	sqlite_exec_printf;
414520Snw141292	sqlite_exec_vprintf;
424520Snw141292	sqlite_get_table_printf;
434520Snw141292	sqlite_get_table_vprintf;
444520Snw141292	sqlite_mprintf;
454520Snw141292	sqlite_vmprintf;
464520Snw141292	sqlite_freemem;
474520Snw141292	sqlite_libversion;
484520Snw141292	sqlite_libencoding;
494520Snw141292	sqlite_create_function;
504520Snw141292	sqlite_create_aggregate;
514520Snw141292	sqlite_function_type;
524520Snw141292	sqlite_set_result_string;
534520Snw141292	sqlite_set_result_int;
544520Snw141292	sqlite_set_result_double;
554520Snw141292	sqlite_set_result_error;
564520Snw141292	sqlite_user_data;
574520Snw141292	sqlite_aggregate_context;
584520Snw141292	sqlite_aggregate_count;
594520Snw141292	sqlite_set_authorizer;
604520Snw141292	sqlite_trace;
614520Snw141292	sqlite_compile;
624520Snw141292	sqlite_step;
634520Snw141292	sqlite_finalize;
644520Snw141292	sqlite_reset;
654520Snw141292	sqlite_bind;
664520Snw141292	sqlite_progress_handler;
674520Snw141292	sqlite_commit_hook;
684520Snw141292	sqlite_encode_binary;
694520Snw141292	sqlite_decode_binary;
704520Snw141292
714520Snw141292	# exported data
724520Snw141292	sqlite_version;
734520Snw141292	sqlite_encoding;
744520Snw141292
754520Snw141292    local:
764520Snw141292	*;
774520Snw141292};
78