2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: JRD Command Oriented Query Language
|
|
|
|
* MODULE: blk.h
|
|
|
|
* DESCRIPTION: Block type definitions
|
|
|
|
*
|
|
|
|
* 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): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
|
|
|
BLKDEF (type_frb, frb, 0)
|
|
|
|
BLKDEF (type_hnk, hnk, 0)
|
|
|
|
BLKDEF (type_plb, plb, 0)
|
2003-09-01 19:38:56 +02:00
|
|
|
BLKDEF (type_vec, vec, sizeof (((VEC) NULL)->vec_object[0]))
|
2001-05-23 15:26:42 +02:00
|
|
|
BLKDEF (type_dbb, dbb, 1)
|
2002-11-21 00:18:16 +01:00
|
|
|
BLKDEF (type_rel, qli_rel, 0)
|
2002-11-30 18:45:02 +01:00
|
|
|
BLKDEF (type_fld, qli_fld, 1)
|
2003-09-01 19:38:56 +02:00
|
|
|
BLKDEF (type_vcl, vcl, sizeof (((VCL) NULL)->vcl_long[0]))
|
2002-11-21 00:18:16 +01:00
|
|
|
BLKDEF (type_req, qli_req, 0) /* Request block */
|
2003-09-19 12:26:46 +02:00
|
|
|
BLKDEF (type_nod, qli_nod, sizeof(qli_nod*)) // sizeof (((QLI_NOD) NULL)->nod_arg[0]))
|
2003-09-01 19:38:56 +02:00
|
|
|
BLKDEF (type_syn, qli_nod, sizeof (((SYN) NULL)->syn_arg[0]))
|
2001-05-23 15:26:42 +02:00
|
|
|
BLKDEF (type_lls, lls, 0) /* linked list stack */
|
|
|
|
BLKDEF (type_str, str, 1) /* random string block */
|
|
|
|
BLKDEF (type_tok, tok, 1) /* token block */
|
|
|
|
BLKDEF (type_sym, sym, 1) /* symbol block */
|
2002-11-19 13:38:35 +01:00
|
|
|
BLKDEF (type_msg, qli_msg, 0) /* Message block */
|
2001-05-23 15:26:42 +02:00
|
|
|
BLKDEF (type_nam, nam, 1) /* Name node */
|
2002-11-21 00:18:16 +01:00
|
|
|
BLKDEF (type_ctx, qli_ctx, 0) /* Context block */
|
2001-05-23 15:26:42 +02:00
|
|
|
BLKDEF (type_con, con, 1) /* Constant block */
|
|
|
|
BLKDEF (type_itm, itm, 0) /* Print item */
|
|
|
|
BLKDEF (type_par, par, 0) /* Parameter block */
|
|
|
|
BLKDEF (type_line, line, 1) /* Input line block */
|
|
|
|
BLKDEF (type_brk, brk, 0)
|
|
|
|
BLKDEF (type_rpt, rpt, 0)
|
2003-03-13 13:35:14 +01:00
|
|
|
BLKDEF (type_pic, pics, 0)
|
2001-05-23 15:26:42 +02:00
|
|
|
BLKDEF (type_prt, prt, 0)
|
2003-09-25 13:49:12 +02:00
|
|
|
BLKDEF (type_map, qli_map, 0)
|
2001-05-23 15:26:42 +02:00
|
|
|
BLKDEF (type_qpr, qpr, 0)
|
|
|
|
BLKDEF (type_qfn, qfn, 0)
|
|
|
|
BLKDEF (type_qfl, qfl, 0)
|
2003-09-19 12:26:46 +02:00
|
|
|
BLKDEF (type_fun, fun, sizeof(DSC)) // sizeof (((FUN) NULL)->fun_arg[0]))
|
2001-05-23 15:26:42 +02:00
|
|
|
BLKDEF (type_rlb, rlb, 0) /* Request language block */
|