home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xyzext.zip / xyz / server / samples / miinitext.c < prev    next >
C/C++ Source or Header  |  1992-07-18  |  2KB  |  94 lines

  1. /***********************************************************
  2. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  3. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Digital or MIT not be
  12. used in advertising or publicity pertaining to distribution of the
  13. software without specific, written prior permission.  
  14.  
  15. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22.  
  23. ******************************************************************/
  24. /* $XConsortium: miinitext.c,v 1.15 90/08/15 08:42:23 rws Exp $ */
  25.  
  26. #ifdef BEZIER
  27. extern void BezierExtensionInit();
  28. #endif
  29. #ifdef XTESTEXT1
  30. extern void XTestExtension1Init();
  31. #endif
  32. #ifdef SHAPE
  33. extern void ShapeExtensionInit();
  34. #endif
  35. #ifdef MITSHM
  36. extern void ShmExtensionInit();
  37. #endif
  38. #ifdef PEXEXT
  39. extern void PexExtensionInit();
  40. #endif
  41. #ifdef MULTIBUFFER
  42. extern void MultibufferExtensionInit();
  43. #endif
  44. #ifdef XINPUT
  45. extern void XInputExtensionInit();
  46. #endif
  47. #ifdef MITMISC
  48. extern void MITMiscExtensionInit();
  49. #endif
  50. #ifdef XIDLE
  51. extern void XIdleExtensionInit();
  52. #endif
  53. #ifdef XYZEXT
  54. extern void XamineYourZerverInit();
  55. #endif
  56.  
  57. /*ARGSUSED*/
  58. void
  59. InitExtensions(argc, argv)
  60.     int        argc;
  61.     char    *argv[];
  62. {
  63. #ifdef BEZIER
  64.     BezierExtensionInit();
  65. #endif
  66. #ifdef XTESTEXT1
  67.     XTestExtension1Init();
  68. #endif
  69. #ifdef SHAPE
  70.     ShapeExtensionInit();
  71. #endif
  72. #ifdef MITSHM
  73.     ShmExtensionInit();
  74. #endif
  75. #ifdef PEXEXT
  76.     PexExtensionInit();
  77. #endif
  78. #ifdef MULTIBUFFER
  79.     MultibufferExtensionInit();
  80. #endif
  81. #ifdef XINPUT
  82.     XInputExtensionInit();
  83. #endif
  84. #ifdef MITMISC
  85.     MITMiscExtensionInit();
  86. #endif
  87. #ifdef XIDLE
  88.     XIdleExtensionInit();
  89. #endif
  90. #ifdef XYZEXT
  91.     XamineYourZerverInit(argc, argv);
  92. #endif
  93. }
  94.