UilCompGl.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-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. * @OSF_COPYRIGHT@
  25. * COPYRIGHT NOTICE
  26. * Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  27. * ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  28. * the full copyright text.
  29. */
  30. /*
  31. * HISTORY
  32. */
  33. /* $XConsortium: UilCompGl.h /main/10 1995/07/14 09:32:57 drk $ */
  34. /*
  35. * (c) Copyright 1989, 1990, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  36. /*
  37. **++
  38. ** FACILITY:
  39. **
  40. ** User Interface Language Compiler (UIL)
  41. **
  42. ** ABSTRACT:
  43. **
  44. ** This include file contains external declarations of all Uil
  45. ** compiler globals excluding those which define the recognized
  46. ** language which are declared in UilSymGl.h
  47. **
  48. **--
  49. **/
  50. #ifndef UilCompGl_h
  51. #define UilCompGl_h
  52. #include <setjmp.h>
  53. /*
  54. * Defined in UilCmd.c
  55. */
  56. externalref cmd_command_line_type Uil_cmd_z_command;
  57. /*
  58. * Defined in UilData
  59. */
  60. externalref boolean uil_v_case_sensitive;
  61. externalref jmp_buf uil_az_error_env_block;
  62. externalref boolean uil_az_error_env_valid;
  63. #if debug_version
  64. externalref boolean uil_v_dump_tokens;
  65. externalref boolean uil_v_dump_symbols;
  66. #endif
  67. externalref status uil_l_compile_status;
  68. externalref Uil_compile_desc_type *Uil_compile_desc_ptr;
  69. externalref int Uil_percent_complete;
  70. externalref int Uil_lines_processed;
  71. externalref char *Uil_current_file;
  72. /*
  73. * Defined in UilDiags
  74. */
  75. externalref int Uil_message_count[];
  76. /*
  77. * Defined in UilLexAna
  78. */
  79. externalref int Uil_lex_l_user_default_charset;
  80. externalref sym_value_entry_type *Uil_lex_az_charset_entry;
  81. externalref int Uil_lex_l_charset_specified;
  82. externalref int Uil_lex_l_localized;
  83. externalref int Uil_lex_l_literal_charset;
  84. externalref sym_value_entry_type *Uil_lex_az_literal_charset;
  85. externalref char *comment_text;
  86. externalref int comment_size;
  87. /* % Complete */
  88. externalref int Uil_characters_read;
  89. /*
  90. * Defined in UilLstLst
  91. */
  92. externalref char Uil_lst_c_title2[];
  93. /*
  94. * Defined in UilP2Out
  95. */
  96. externalref IDBFile out_az_idbfile_id;
  97. /*
  98. * Defined in UilSarMod
  99. */
  100. externalref src_source_record_type *src_az_module_source_record;
  101. externalref unsigned short int *uil_urm_variant;
  102. externalref unsigned short int *uil_arg_compr;
  103. externalref unsigned short int *uil_reas_compr;
  104. externalref unsigned short int *uil_widget_compr;
  105. externalref unsigned short int *uil_child_compr;
  106. /*
  107. * Defined in UilSrcSrc
  108. */
  109. externalref src_source_buffer_type *src_az_current_source_buffer;
  110. externalref src_source_buffer_type *src_az_avail_source_buffer;
  111. externalref src_message_item_type *src_az_orphan_messages;
  112. externalref src_source_record_type *src_az_current_source_record;
  113. externalref src_source_record_type *src_az_first_source_record;
  114. externalref uil_fcb_type *src_az_source_file_table[];
  115. externalref int src_l_last_source_file_number;
  116. /* %COMPLETE */
  117. externalref long Uil_file_size;
  118. /*
  119. * Defined in UilSymStor
  120. */
  121. externalref sym_name_entry_type *sym_az_hash_table[];
  122. externalref sym_value_entry_type *sym_az_error_value_entry;
  123. externalref sym_external_def_entry_type *sym_az_external_def_chain;
  124. externalref sym_forward_ref_entry_type *sym_az_forward_ref_chain;
  125. externalref sym_val_forward_ref_entry_type *sym_az_val_forward_ref_chain;
  126. externalref sym_module_entry_type *sym_az_module_entry;
  127. externalref sym_root_entry_type *sym_az_root_entry;
  128. externalref sym_section_entry_type *sym_az_current_section_entry;
  129. externalref sym_entry_type *sym_az_entry_list_header;
  130. externalref URMPointerListPtr sym_az_allocated_nodes;
  131. externalref URMPointerListPtr sym_az_freed_nodes;
  132. #endif /* UilCompGl_h */
  133. /* DON'T ADD STUFF AFTER THIS #endif */