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

51 lines
2.0 KiB
C
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: Dynamic SQL runtime support
* MODULE: make_proto.h
* DESCRIPTION: Prototype Header file for make.c
*
* 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): ______________________________________.
*
* 2002-07-20 Arno Brinkman: Added MAKE_desc_from_list
2001-05-23 15:26:42 +02:00
*/
#ifndef _DSQL_MAKE_PROTO_H_
#define _DSQL_MAKE_PROTO_H_
#include "../dsql/sym.h"
struct dsql_nod* MAKE_constant(class str* , int);
struct dsql_nod* MAKE_str_constant(class str* , SSHORT);
class str* MAKE_cstring(const char*);
void MAKE_desc(struct dsc* , struct dsql_nod*);
void MAKE_desc_from_field(struct dsc* , class dsql_fld*);
void MAKE_desc_from_list(struct dsc* , struct dsql_nod*);
struct dsql_nod* MAKE_field(class dsql_ctx* , class dsql_fld* , struct dsql_nod*);
struct dsql_nod* MAKE_list(class dsql_lls*);
struct dsql_nod* MAKE_node(ENUM nod_t, int);
class par* MAKE_parameter(class dsql_msg* , USHORT, USHORT, USHORT);
class str* MAKE_string(const char* , int);
2003-02-13 10:33:26 +01:00
struct sym* MAKE_symbol(class dbb* , const TEXT* , USHORT,
ENUM sym_type, class dsql_req*);
class str* MAKE_tagged_string(const char* str, size_t length, const char* charset);
struct dsql_nod* MAKE_trigger_type(struct dsql_nod*, struct dsql_nod*);
2003-02-13 10:33:26 +01:00
struct dsql_nod* MAKE_variable(class dsql_fld* , const TEXT* , USHORT, USHORT,
2001-05-23 15:26:42 +02:00
USHORT, USHORT);
#endif /* _DSQL_MAKE_PROTO_H_ */