1 /* 2 * Motif 3 * 4 * Copyright (c) 1987-2012, The Open Group. All rights reserved. 5 * 6 * These libraries and programs are free software; you can 7 * redistribute them and/or modify them under the terms of the GNU 8 * Lesser General Public License as published by the Free Software 9 * Foundation; either version 2 of the License, or (at your option) 10 * any later version. 11 * 12 * These libraries and programs are distributed in the hope that 13 * they will be useful, but WITHOUT ANY WARRANTY; without even the 14 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 15 * PURPOSE. See the GNU Lesser General Public License for more 16 * details. 17 * 18 * You should have received a copy of the GNU Lesser General Public 19 * License along with these librararies and programs; if not, write 20 * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth 21 * Floor, Boston, MA 02110-1301 USA 22 */ 23 24 /* 25 **++ 26 ** FACILITY: 27 ** 28 ** User Interface Language Compiler (UIL) 29 ** 30 ** ABSTRACT: 31 ** 32 ** This include file contains external declarations of all Uil 33 ** compiler globals excluding those which define the recognized 34 ** language which are declared in UilSymGl.h 35 ** 36 **-- 37 **/ 38 39 #ifndef UilCompGl_h 40 #define UilCompGl_h 41 42 #include <setjmp.h> 43 44 /* 45 * Defined in UilCmd.c 46 */ 47 externalref cmd_command_line_type Uil_cmd_z_command; 48 49 /* 50 * Defined in UilData 51 */ 52 externalref boolean uil_v_case_sensitive; 53 externalref jmp_buf uil_az_error_env_block; 54 externalref boolean uil_az_error_env_valid; 55 #if debug_version 56 externalref boolean uil_v_dump_tokens; 57 externalref boolean uil_v_dump_symbols; 58 #endif 59 externalref status uil_l_compile_status; 60 externalref Uil_compile_desc_type *Uil_compile_desc_ptr; 61 externalref int Uil_percent_complete; 62 externalref int Uil_lines_processed; 63 externalref char *Uil_current_file; 64 65 /* 66 * Defined in UilDiags 67 */ 68 externalref int Uil_message_count[]; 69 70 /* 71 * Defined in UilLexAna 72 */ 73 externalref int Uil_lex_l_user_default_charset; 74 externalref sym_value_entry_type *Uil_lex_az_charset_entry; 75 externalref int Uil_lex_l_charset_specified; 76 externalref int Uil_lex_l_localized; 77 externalref int Uil_lex_l_literal_charset; 78 externalref sym_value_entry_type *Uil_lex_az_literal_charset; 79 externalref char *comment_text; 80 externalref int comment_size; 81 /* % Complete */ 82 externalref int Uil_characters_read; 83 84 /* 85 * Defined in UilLstLst 86 */ 87 externalref char Uil_lst_c_title2[]; 88 89 /* 90 * Defined in UilP2Out 91 */ 92 externalref IDBFile out_az_idbfile_id; 93 94 /* 95 * Defined in UilSarMod 96 */ 97 externalref src_source_record_type *src_az_module_source_record; 98 externalref unsigned short int *uil_urm_variant; 99 externalref unsigned short int *uil_arg_compr; 100 externalref unsigned short int *uil_reas_compr; 101 externalref unsigned short int *uil_widget_compr; 102 externalref unsigned short int *uil_child_compr; 103 104 /* 105 * Defined in UilSrcSrc 106 */ 107 externalref src_source_buffer_type *src_az_current_source_buffer; 108 externalref src_source_buffer_type *src_az_avail_source_buffer; 109 externalref src_message_item_type *src_az_orphan_messages; 110 externalref src_source_record_type *src_az_current_source_record; 111 externalref src_source_record_type *src_az_first_source_record; 112 externalref uil_fcb_type *src_az_source_file_table[]; 113 externalref int src_l_last_source_file_number; 114 /* %COMPLETE */ 115 externalref long Uil_file_size; 116 117 /* 118 * Defined in UilSymStor 119 */ 120 externalref sym_name_entry_type *sym_az_hash_table[]; 121 externalref sym_value_entry_type *sym_az_error_value_entry; 122 externalref sym_external_def_entry_type *sym_az_external_def_chain; 123 externalref sym_forward_ref_entry_type *sym_az_forward_ref_chain; 124 externalref sym_val_forward_ref_entry_type *sym_az_val_forward_ref_chain; 125 externalref sym_module_entry_type *sym_az_module_entry; 126 externalref sym_root_entry_type *sym_az_root_entry; 127 externalref sym_section_entry_type *sym_az_current_section_entry; 128 externalref sym_entry_type *sym_az_entry_list_header; 129 externalref URMPointerListPtr sym_az_allocated_nodes; 130 externalref URMPointerListPtr sym_az_freed_nodes; 131 132 #endif /* UilCompGl_h */ 133 /* DON'T ADD STUFF AFTER THIS #endif */ 134