home *** CD-ROM | disk | FTP | other *** search
- /* ------------------------------------------------------------------------ */
- /* @@ Source Documentation *** MSC Version *** */
- /* */
- /* Copyright (c) Creative Technology Pte Ltd, 1991. All rights reserved. */
- /* */
- /* TITLE : SBKVER.C */
- /* */
- /* DESCRIPTION : */
- /* This program helps to show your Sound Blaster Developer Kit */
- /* version number. */
- /* */
- /* To check your library version compile this program with following */
- /* command: */
- /* */
- /* CL /Ax sbkver.c /link SBCxR */
- /* */
- /* where 'x' can be replaced with one of following characters S, C, */
- /* M and L. */
- /* */
- /* ------------------------------------------------------------------------ */
-
- extern char near sbclib_version_major ;
- extern char near sbclib_version_minor ;
-
- main()
- {
- puts("Developer Kit for Sound Blaster Series") ;
- puts("Microsoft C version\n") ;
-
- printf("Version: %d.%02d\n",sbclib_version_major,sbclib_version_minor) ;
- }
-