tkPort.h 632 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * tkPort.h --
  3. *
  4. * This header file handles porting issues that occur because of
  5. * differences between systems. It reads in platform specific
  6. * portability files.
  7. *
  8. * Copyright (c) 1995 Sun Microsystems, Inc.
  9. *
  10. * See the file "license.terms" for information on usage and redistribution
  11. * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12. */
  13. #ifndef _TKPORT
  14. #define _TKPORT
  15. #if defined(_WIN32)
  16. # include "tkWinPort.h"
  17. #endif
  18. #ifndef _TK
  19. # include "tk.h"
  20. #endif
  21. #if !defined(_WIN32)
  22. # if defined(MAC_OSX_TK)
  23. # include "tkMacOSXPort.h"
  24. # else
  25. # include "tkUnixPort.h"
  26. # endif
  27. #endif
  28. #endif /* _TKPORT */