home *** CD-ROM | disk | FTP | other *** search
- ' -----------------------------------------------------------------------------
- '
- ' This program helps to show your Sound Blaster Developer Kit version
- ' number.
- '
- ' To check your library version version compile this program with
- ' following command:
- '
- ' For Quick Basic ver 4.5 :
- ' BC sbkver /O ;
- ' LINK sbkver,,,qbsbc.lib ;
- '
- ' For Basic PDS 7 :
- ' BC sbkver /O ;
- ' LINK sbkver,,,qb7sbc.lib ;
- '
- ' -----------------------------------------------------------------------------
-
- DECLARE FUNCTION SBKVERMA%
- DECLARE FUNCTION SBKVERMI%
-
-
- PRINT "Developer Kit for Sound Blaster Series"
- PRINT "QuickBasic / Basic PDS 7 version" : PRINT
-
- PRINT USING "Version: #.##"; SBKVERMA% + SBKVERMI%/100
-