2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: Preprocessor
|
|
|
|
* MODULE: msc_proto.h
|
|
|
|
* DESCRIPTION: Prototype header file for msc.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): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GPRE_MSC_PROTO_H_
|
|
|
|
#define _GPRE_MSC_PROTO_H_
|
|
|
|
|
|
|
|
#include "../gpre/parse.h"
|
|
|
|
|
2002-11-17 01:04:19 +01:00
|
|
|
extern ACT MSC_action(GPRE_REQ, enum act_t);
|
2001-05-23 15:26:42 +02:00
|
|
|
extern UCHAR *MSC_alloc(int);
|
|
|
|
extern UCHAR *MSC_alloc_permanent(int);
|
2002-11-11 20:19:43 +01:00
|
|
|
extern GPRE_NOD MSC_binary(NOD_T, GPRE_NOD, GPRE_NOD);
|
2002-11-17 01:04:19 +01:00
|
|
|
extern GPRE_CTX MSC_context(GPRE_REQ);
|
2001-05-23 15:26:42 +02:00
|
|
|
extern void MSC_copy(char *, int, char *);
|
2003-08-09 20:00:14 +02:00
|
|
|
extern void MSC_copy_cat(char *, int, char *, int, char *);
|
2001-05-23 15:26:42 +02:00
|
|
|
extern SYM MSC_find_symbol(SYM, enum sym_t);
|
|
|
|
extern void MSC_free(UCHAR *);
|
2002-11-17 01:04:19 +01:00
|
|
|
extern void MSC_free_request(GPRE_REQ);
|
2001-05-23 15:26:42 +02:00
|
|
|
extern void MSC_init(void);
|
|
|
|
extern BOOLEAN MSC_match(KWWORDS);
|
2003-08-09 20:00:14 +02:00
|
|
|
#ifdef PYXIS
|
2002-11-11 20:19:43 +01:00
|
|
|
extern BOOLEAN MSC_member(GPRE_NOD, LLS);
|
2003-08-09 20:00:14 +02:00
|
|
|
#endif
|
2002-11-11 20:19:43 +01:00
|
|
|
extern GPRE_NOD MSC_node(enum nod_t, SSHORT);
|
|
|
|
extern GPRE_NOD MSC_pop(LLS *);
|
2001-05-23 15:26:42 +02:00
|
|
|
extern PRV MSC_privilege_block(void);
|
2002-11-11 20:19:43 +01:00
|
|
|
extern void MSC_push(GPRE_NOD, LLS *);
|
2001-05-23 15:26:42 +02:00
|
|
|
extern REF MSC_reference(REF *);
|
2002-11-17 01:04:19 +01:00
|
|
|
extern GPRE_REQ MSC_request(enum req_t);
|
2001-05-23 15:26:42 +02:00
|
|
|
extern SCHAR *MSC_string(TEXT *);
|
2002-11-17 01:04:19 +01:00
|
|
|
extern SYM MSC_symbol(enum sym_t, TEXT *, USHORT, GPRE_CTX);
|
2002-11-11 20:19:43 +01:00
|
|
|
extern GPRE_NOD MSC_unary(NOD_T, GPRE_NOD);
|
2001-05-23 15:26:42 +02:00
|
|
|
extern USN MSC_username(SCHAR *, USHORT);
|
|
|
|
|
|
|
|
#endif /* _GPRE_MSC_PROTO_H_ */
|