8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-28 02:43:03 +01:00
firebird-mirror/src/dsql/metd_proto.h

47 lines
1.9 KiB
C
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: Dynamic SQL runtime support
* MODULE: metd_proto.h
* DESCRIPTION: Prototype Header file for metd.e
*
* 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): ______________________________________.
*/
#ifndef _DSQL_METD_PROTO_H
#define _DSQL_METD_PROTO_H
2002-06-29 08:56:51 +02:00
void METD_drop_function(class req*, class str*);
2001-12-24 03:51:06 +01:00
void METD_drop_procedure(class req*, class str*);
void METD_drop_relation(class req*, class str*);
INTLSYM METD_get_charset(class req*, USHORT, UCHAR *);
USHORT METD_get_charset_bpc (struct req *, SSHORT);
2001-12-24 03:51:06 +01:00
INTLSYM METD_get_collation(class req*, class str*);
2001-05-23 15:26:42 +02:00
void METD_get_col_default(REQ, TEXT*, TEXT*, BOOLEAN*, TEXT*, USHORT);
2001-12-24 03:51:06 +01:00
STR METD_get_default_charset(class req*);
USHORT METD_get_domain(class req*, class fld*, UCHAR*);
void METD_get_domain_default(class req*, TEXT*, BOOLEAN*, TEXT*, USHORT);
UDF METD_get_function(class req*, class str*);
2002-11-11 20:08:37 +01:00
DSQL_NOD METD_get_primary_key(class req*, class str*);
2001-12-24 03:51:06 +01:00
PRC METD_get_procedure(class req*, class str*);
DSQL_REL METD_get_relation(class req*, class str*);
STR METD_get_trigger_relation(class req*, class str*, USHORT*);
USHORT METD_get_type(class req*, class str*, UCHAR*, SSHORT*);
DSQL_REL METD_get_view_relation(class req*, UCHAR*, UCHAR*, USHORT);
2001-05-23 15:26:42 +02:00
#endif /*_DSQL_METD_PROTO_H */