123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /*
- * CDE - Common Desktop Environment
- *
- * Copyright (c) 1993-2012, The Open Group. All rights reserved.
- *
- * These libraries and programs are free software; you can
- * redistribute them and/or modify them under the terms of the GNU
- * Lesser General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * These libraries and programs are distributed in the hope that
- * they will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU Lesser General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with these librararies and programs; if not, write
- * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
- * Floor, Boston, MA 02110-1301 USA
- */
- /*
- * @OSF_COPYRIGHT@
- * COPYRIGHT NOTICE
- * Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
- * ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
- * the full copyright text.
- */
- /*
- * HISTORY
- */
- /* $XConsortium: UilCompGl.h /main/10 1995/07/14 09:32:57 drk $ */
- /*
- * (c) Copyright 1989, 1990, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
- /*
- **++
- ** FACILITY:
- **
- ** User Interface Language Compiler (UIL)
- **
- ** ABSTRACT:
- **
- ** This include file contains external declarations of all Uil
- ** compiler globals excluding those which define the recognized
- ** language which are declared in UilSymGl.h
- **
- **--
- **/
- #ifndef UilCompGl_h
- #define UilCompGl_h
- #include <setjmp.h>
- /*
- * Defined in UilCmd.c
- */
- externalref cmd_command_line_type Uil_cmd_z_command;
- /*
- * Defined in UilData
- */
- externalref boolean uil_v_case_sensitive;
- externalref jmp_buf uil_az_error_env_block;
- externalref boolean uil_az_error_env_valid;
- #if debug_version
- externalref boolean uil_v_dump_tokens;
- externalref boolean uil_v_dump_symbols;
- #endif
- externalref status uil_l_compile_status;
- externalref Uil_compile_desc_type *Uil_compile_desc_ptr;
- externalref int Uil_percent_complete;
- externalref int Uil_lines_processed;
- externalref char *Uil_current_file;
- /*
- * Defined in UilDiags
- */
- externalref int Uil_message_count[];
- /*
- * Defined in UilLexAna
- */
- externalref int Uil_lex_l_user_default_charset;
- externalref sym_value_entry_type *Uil_lex_az_charset_entry;
- externalref int Uil_lex_l_charset_specified;
- externalref int Uil_lex_l_localized;
- externalref int Uil_lex_l_literal_charset;
- externalref sym_value_entry_type *Uil_lex_az_literal_charset;
- externalref char *comment_text;
- externalref int comment_size;
- /* % Complete */
- externalref int Uil_characters_read;
- /*
- * Defined in UilLstLst
- */
- externalref char Uil_lst_c_title2[];
- /*
- * Defined in UilP2Out
- */
- externalref IDBFile out_az_idbfile_id;
- /*
- * Defined in UilSarMod
- */
- externalref src_source_record_type *src_az_module_source_record;
- externalref unsigned short int *uil_urm_variant;
- externalref unsigned short int *uil_arg_compr;
- externalref unsigned short int *uil_reas_compr;
- externalref unsigned short int *uil_widget_compr;
- externalref unsigned short int *uil_child_compr;
- /*
- * Defined in UilSrcSrc
- */
- externalref src_source_buffer_type *src_az_current_source_buffer;
- externalref src_source_buffer_type *src_az_avail_source_buffer;
- externalref src_message_item_type *src_az_orphan_messages;
- externalref src_source_record_type *src_az_current_source_record;
- externalref src_source_record_type *src_az_first_source_record;
- externalref uil_fcb_type *src_az_source_file_table[];
- externalref int src_l_last_source_file_number;
- /* %COMPLETE */
- externalref long Uil_file_size;
- /*
- * Defined in UilSymStor
- */
- externalref sym_name_entry_type *sym_az_hash_table[];
- externalref sym_value_entry_type *sym_az_error_value_entry;
- externalref sym_external_def_entry_type *sym_az_external_def_chain;
- externalref sym_forward_ref_entry_type *sym_az_forward_ref_chain;
- externalref sym_val_forward_ref_entry_type *sym_az_val_forward_ref_chain;
- externalref sym_module_entry_type *sym_az_module_entry;
- externalref sym_root_entry_type *sym_az_root_entry;
- externalref sym_section_entry_type *sym_az_current_section_entry;
- externalref sym_entry_type *sym_az_entry_list_header;
- externalref URMPointerListPtr sym_az_allocated_nodes;
- externalref URMPointerListPtr sym_az_freed_nodes;
- #endif /* UilCompGl_h */
- /* DON'T ADD STUFF AFTER THIS #endif */
|