mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-25 05:23:02 +01:00
54 lines
1.7 KiB
C
54 lines
1.7 KiB
C
/*
|
|
* PROGRAM: Preprocessor
|
|
* MODULE: msc_proto.h
|
|
* DESCRIPTION: Prototype header file for msc.cpp
|
|
*
|
|
* 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 GPRE_MSC_PROTO_H
|
|
#define GPRE_MSC_PROTO_H
|
|
|
|
#include "../gpre/parse.h"
|
|
|
|
act* MSC_action(gpre_req*, enum act_t);
|
|
UCHAR* MSC_alloc(int);
|
|
UCHAR* MSC_alloc_permanent(int);
|
|
GPRE_NOD MSC_binary(NOD_T, GPRE_NOD, GPRE_NOD);
|
|
gpre_ctx* MSC_context(gpre_req*);
|
|
void MSC_copy(const char*, int, char*);
|
|
void MSC_copy_cat(const char*, int, const char*, int, char*);
|
|
gpre_sym* MSC_find_symbol(gpre_sym*, enum sym_t);
|
|
void MSC_free(UCHAR*);
|
|
void MSC_free_request(gpre_req*);
|
|
void MSC_init(void);
|
|
bool MSC_match(KWWORDS);
|
|
GPRE_NOD MSC_node(enum nod_t, SSHORT);
|
|
GPRE_NOD MSC_pop(gpre_lls**);
|
|
PRV MSC_privilege_block(void);
|
|
void MSC_push(GPRE_NOD, gpre_lls**);
|
|
REF MSC_reference(REF*);
|
|
gpre_req* MSC_request(enum req_t);
|
|
SCHAR* MSC_string(const TEXT*);
|
|
gpre_sym* MSC_symbol(enum sym_t, const TEXT*, USHORT, gpre_ctx*);
|
|
GPRE_NOD MSC_unary(NOD_T, GPRE_NOD);
|
|
gpre_usn* MSC_username(SCHAR*, USHORT);
|
|
|
|
#endif // GPRE_MSC_PROTO_H
|
|
|