tkUnixInt.h 674 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * tkUnixInt.h --
  3. *
  4. * This file contains declarations that are shared among the
  5. * UNIX-specific parts of Tk but aren't used by the rest of Tk.
  6. *
  7. * Copyright (c) 1995-1997 Sun Microsystems, Inc.
  8. *
  9. * See the file "license.terms" for information on usage and redistribution of
  10. * this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11. */
  12. #ifndef _TKUNIXINT
  13. #define _TKUNIXINT
  14. #ifndef _TKINT
  15. #include "tkInt.h"
  16. #endif
  17. /*
  18. * Prototypes for procedures that are referenced in files other than the ones
  19. * they're defined in.
  20. */
  21. #include "tkIntPlatDecls.h"
  22. #endif /* _TKUNIXINT */
  23. /*
  24. * Local Variables:
  25. * mode: c
  26. * c-basic-offset: 4
  27. * fill-column: 78
  28. * End:
  29. */