tkinter.h 589 B

12345678910111213141516171819
  1. #ifndef TKINTER_H
  2. #define TKINTER_H
  3. /* This header is used to share some macros between _tkinter.c and
  4. * tkappinit.c.
  5. * Be sure to include tk.h before including this header so
  6. * TK_HEX_VERSION is properly defined. */
  7. /* TK_RELEASE_LEVEL is always one of the following:
  8. * TCL_ALPHA_RELEASE 0
  9. * TCL_BETA_RELEASE 1
  10. * TCL_FINAL_RELEASE 2
  11. */
  12. #define TK_HEX_VERSION ((TK_MAJOR_VERSION << 24) | \
  13. (TK_MINOR_VERSION << 16) | \
  14. (TK_RELEASE_LEVEL << 8) | \
  15. (TK_RELEASE_SERIAL << 0))
  16. #endif /* !TKINTER_H */