packages.scm 789 B

1234567891011121314151617181920212223242526272829303132333435
  1. (define-structure button-demo
  2. (export make-button
  3. test-button)
  4. (open scheme threads
  5. rendezvous rendezvous-channels
  6. rendezvous-async-channels
  7. toy-geometry toy-display-system
  8. toy-window-system)
  9. (files button))
  10. (define-structure frame-demo
  11. (export frame?
  12. frame-border
  13. make-frame
  14. frame=?
  15. frame-highlight!
  16. test-frame-with-button)
  17. (open scheme define-record-types threads
  18. rendezvous rendezvous-channels
  19. rendezvous-async-channels
  20. toy-geometry toy-display-system
  21. toy-window-system
  22. button-demo)
  23. (files frame))
  24. (define-structure texture-demo
  25. (export texture-demo)
  26. (open scheme threads srfi-1
  27. rendezvous rendezvous-channels
  28. rendezvous-async-channels
  29. toy-geometry toy-display-system
  30. toy-window-system
  31. toy-button)
  32. (files textures))