drivers.bmx 681 B

1234567891011121314151617181920212223242526272829
  1. Strict
  2. Rem
  3. bbdoc: MaxGUI/Drivers
  4. about:
  5. Your MaxGUI applications should import this module if they want BlitzMax to selectively import the latest official #{MaxGUI drivers} for your application and platform:
  6. [ @Platform | @{Default Driver}
  7. * Windows 2000/XP/Vista | #MaxGUI.Win32MaxGUIEx
  8. * Windows 9X | #MaxGUI.Win32MaxGUIEx (requires unicows.dll or MSLU to run)
  9. * Linux | #MaxGUI.FLTKMaxGUI
  10. * Mac OS X | #MaxGUI.CocoaMaxGUI
  11. ]
  12. End Rem
  13. Module MaxGUI.Drivers
  14. ModuleInfo "Version: 0.04"
  15. ModuleInfo "Author: Simon Armstrong"
  16. ModuleInfo "License: zlib/libpng"
  17. ?Win32
  18. Import MaxGUI.Win32MaxGUIEx
  19. Import "-lunicows"
  20. ?MacOs
  21. Import Maxgui.CocoaMaxGui
  22. ?Linux
  23. Import Maxgui.FLTKMaxGui
  24. ?