2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: Dynamic SQL runtime support
|
|
|
|
* MODULE: array_proto.h
|
2003-09-29 14:43:14 +02:00
|
|
|
* DESCRIPTION: Prototype Header file for array.epp
|
2001-05-23 15:26:42 +02:00
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase Public
|
|
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy
|
|
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code was created by Inprise Corporation
|
|
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
|
|
* Copyright (C) Inprise Corporation.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
2003-09-26 12:50:59 +02:00
|
|
|
#ifndef DSQL_ARRAY_PROTO_H
|
|
|
|
#define DSQL_ARRAY_PROTO_H
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-06-04 16:36:45 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2003-12-22 11:00:59 +01:00
|
|
|
ISC_STATUS API_ROUTINE isc_array_gen_sdl(ISC_STATUS*, const ISC_ARRAY_DESC*,
|
2004-06-04 16:36:45 +02:00
|
|
|
SSHORT*, UCHAR*, SSHORT*);
|
|
|
|
|
2004-06-14 01:27:29 +02:00
|
|
|
ISC_STATUS API_ROUTINE isc_array_get_slice(ISC_STATUS*, FB_API_HANDLE*, FB_API_HANDLE*,
|
2004-06-04 16:36:45 +02:00
|
|
|
ISC_QUAD*, const ISC_ARRAY_DESC*,
|
|
|
|
void*, SLONG*);
|
|
|
|
|
2004-06-14 01:27:29 +02:00
|
|
|
ISC_STATUS API_ROUTINE isc_array_lookup_bounds(ISC_STATUS*, FB_API_HANDLE*, FB_API_HANDLE*,
|
2004-06-04 16:36:45 +02:00
|
|
|
const SCHAR*, const SCHAR*,
|
|
|
|
ISC_ARRAY_DESC*);
|
|
|
|
|
2004-06-14 01:27:29 +02:00
|
|
|
ISC_STATUS API_ROUTINE isc_array_lookup_desc(ISC_STATUS*, FB_API_HANDLE*, FB_API_HANDLE*,
|
2004-06-04 16:36:45 +02:00
|
|
|
const SCHAR*, const SCHAR*,
|
|
|
|
ISC_ARRAY_DESC*);
|
|
|
|
|
2004-06-14 01:27:29 +02:00
|
|
|
ISC_STATUS API_ROUTINE isc_array_put_slice(ISC_STATUS*, FB_API_HANDLE*, FB_API_HANDLE*,
|
2004-06-04 16:36:45 +02:00
|
|
|
ISC_QUAD*, const ISC_ARRAY_DESC*,
|
|
|
|
void*, SLONG*);
|
|
|
|
|
|
|
|
ISC_STATUS API_ROUTINE isc_array_set_desc(ISC_STATUS*, const SCHAR*, const SCHAR*,
|
|
|
|
const SSHORT*, const SSHORT*, const SSHORT*,
|
|
|
|
ISC_ARRAY_DESC*);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-09-26 12:50:59 +02:00
|
|
|
#endif // DSQL_ARRAY_PROTO_H
|
2003-09-29 14:43:14 +02:00
|
|
|
|