home *** CD-ROM | disk | FTP | other *** search
/ Sound Sensations! / sound_sensations.iso / soundb / qb_sbkit / sbkver.bas < prev    next >
BASIC Source File  |  1990-07-02  |  678b  |  24 lines

  1. ' -----------------------------------------------------------------------------
  2. '
  3. '    This program helps to show your Sound Blaster Developer Kit version
  4. '    number.
  5. '
  6. '    To check your library version version compile this program with
  7. '    following command:
  8. '
  9. '         BC sbkver ;
  10. '         LINK sbkver,,,qbsbc bcom45 ;
  11. '
  12. ' -----------------------------------------------------------------------------
  13.  
  14. DECLARE FUNCTION SBKVERMA%
  15. DECLARE FUNCTION SBKVERMI%
  16. DECLARE FUNCTION SBKEDITI%
  17.  
  18.  
  19. PRINT "Sound Blaster Developer Kit"
  20. PRINT "QuickBasic version" : PRINT
  21.  
  22. PRINT USING "Version: #.##"; SBKVERMA% + SBKVERMI%/100
  23. PRINT USING "Edition: #"; SBKEDITI%
  24.