UilDef.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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: UilDef.h /main/13 1995/07/14 09:33:37 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 defines the set of definitions used by the public
  45. ** access routines Uil and UilDumpSymbolTable.
  46. **
  47. **--
  48. **/
  49. #ifndef UilDef_h
  50. #define UilDef_h
  51. #if !defined(__STDC__) && !defined(__cplusplus) && !defined(c_plusplus) \
  52. && !defined(FUNCPROTO) && !defined(XTFUNCPROTO) && !defined(XMFUNCPROTO)
  53. #define _NO_PROTO
  54. #endif /* __STDC__ */
  55. /*
  56. **
  57. ** INCLUDE FILES
  58. **
  59. **/
  60. /*
  61. ** Includes needed by other include files.
  62. */
  63. #include <X11/Intrinsic.h>
  64. /*
  65. **
  66. ** Common includes needed by public functions.
  67. **
  68. */
  69. #include <uil/Uil.h>
  70. #include <uil/UilDBDef.h> /* This has to be loaded first. */
  71. #include <uil/UilSymGl.h>
  72. #include <uil/UilSymDef.h>
  73. /*
  74. ** Function declarations not defined elsewhere
  75. */
  76. #define _ARGUMENTS(arglist) arglist
  77. #if defined(__cplusplus) || defined(c_plusplus)
  78. extern "C" {
  79. #endif
  80. /* uilmain.c */
  81. extern Uil_status_type Uil _ARGUMENTS((Uil_command_type
  82. *comand_desc,Uil_compile_desc_type *compile_desc,Uil_continue_type
  83. (*message_cb)(), char *message_data, Uil_continue_type (*status_cb)(),
  84. char *status_data));
  85. /* uilsymstor.c */
  86. extern void UilDumpSymbolTable _ARGUMENTS(( sym_entry_type *node_entry ));
  87. #if defined(__cplusplus) || defined(c_plusplus)
  88. }
  89. #endif
  90. #endif /* UilDef_h */
  91. /* DON'T ADD STUFF AFTER THIS #endif */