home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / extensions / test / InsPEX / include / pdt.h < prev    next >
Encoding:
Text File  |  1991-02-15  |  2.7 KB  |  80 lines

  1.  
  2. /* $XConsortium: pdt.h,v 5.1 91/02/16 10:04:33 rws Exp $ */
  3.  
  4. /*****************************************************************
  5. Copyright (c) 1989,1990, 1991 by Sun Microsystems, Inc. and the X Consortium.
  6.  
  7.                         All Rights Reserved
  8.  
  9. Permission to use, copy, modify, and distribute this software and its 
  10. documentation for any purpose and without fee is hereby granted, 
  11. provided that the above copyright notice appear in all copies and that
  12. both that copyright notice and this permission notice appear in 
  13. supporting documentation, and that the names of Sun Microsystems,
  14. the X Consortium, and MIT not be used in advertising or publicity 
  15. pertaining to distribution of the software without specific, written 
  16. prior permission.  
  17.  
  18. SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 
  19. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT 
  20. SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 
  21. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  23. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  24. SOFTWARE.
  25.  
  26. ******************************************************************/
  27.  
  28.  
  29.  
  30. /*
  31.  * pdt.h: implementation dependent data for PHIGS description table
  32.  */
  33.  
  34. /* number of available workstation types */
  35. Pint num_ws_type = 2;
  36.  
  37. /* list of available workstation types */
  38. /* Note: C compiler does not allowed initilization of a variable using
  39.    other variables, but allow pointer to variables */
  40. Pint *list_ws_type_ptr[] =
  41.         { &phigs_ws_type_x_drawable, &phigs_ws_type_x_tool};
  42.  
  43. /* maximum number of simultaneously open workstations */
  44. Pint max_open_ws = 20;
  45.  
  46. /* maximum number of simultaneously archive files */
  47. Pint max_open_ar = 25;
  48.  
  49. /* number of available names for name sets */
  50. Pint num_names_nameset = 256;
  51.  
  52. /* number of available characters sets */
  53. Pint num_char_set = 1;
  54.  
  55. /* list of available character sets */
  56. Pint list_char_set[] = { PCS_ASCII };
  57.  
  58. /* maximum number of normal filter list for ISS */
  59. Pint max_norm_filter = 100;
  60.  
  61. /* maximum number of inverted filter list for ISS */
  62. Pint max_inv_filter = 100;
  63.  
  64. /* number of available generalized structure elements */
  65. Pint num_gse = 0;
  66.  
  67. /* list of generalized structure element's identifier and its workstation-
  68.    dependency */
  69. Pgse_id_dep list_gse_id_wsdep[] = {NULL};
  70.  
  71. /* maximum number of distinct planes in modelling clipping volumes */
  72. Pint max_distinct_planes = 64;
  73.  
  74. /* number of available modelling clipping operators */
  75. Pint num_model_clip_op = 2;
  76.  
  77. /* list of available modelling clipping operators */
  78. Pint list_model_clip_op[] = {PMC_REPLACE,PMC_INTERSECT};
  79.  
  80.