1 | /* $Id: sbversion.h,v 1.5 2001/03/22 18:10:23 sandervl Exp $ */
|
---|
2 |
|
---|
3 | //******************************************************************************
|
---|
4 | // Header for version string
|
---|
5 | //
|
---|
6 | // Copyright 2000 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
7 | //
|
---|
8 | // This program is free software; you can redistribute it and/or
|
---|
9 | // modify it under the terms of the GNU General Public License as
|
---|
10 | // published by the Free Software Foundation; either version 2 of
|
---|
11 | // the License, or (at your option) any later version.
|
---|
12 | //
|
---|
13 | // This program is distributed in the hope that it will be useful,
|
---|
14 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | // GNU General Public License for more details.
|
---|
17 | //
|
---|
18 | // You should have received a copy of the GNU General Public
|
---|
19 | // License along with this program; if not, write to the Free
|
---|
20 | // Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
|
---|
21 | // USA.
|
---|
22 | //
|
---|
23 | //******************************************************************************
|
---|
24 | #ifndef __SBVERSION_H__
|
---|
25 | #define __SBVERSION_H__
|
---|
26 |
|
---|
27 | // !! ATTENTION: keep in sync with drv32\startup.asm !!
|
---|
28 |
|
---|
29 | #define DRVNAME "CMPCI"
|
---|
30 | #define DRVNAME16 "CMPCI1$ " // 8 characters, filled up with spaces
|
---|
31 | #define DRVNAME32 "CMPCI2$ " // 8 characters, filled up with spaces
|
---|
32 | #define DRIVER16_FILE "CMPCI16.SYS"
|
---|
33 | #define DRIVER32_FILE "CMPCI32.SYS"
|
---|
34 |
|
---|
35 | #define BUILDER_NAME "Rudi"
|
---|
36 | #define PRODUCT_NAME "C-Media 8738"
|
---|
37 | #define VENDOR_NAME "C-Media Electronics Inc."
|
---|
38 |
|
---|
39 | #define PRODUCT_VERSION "0.2.4" // version
|
---|
40 | #define PRODUCT_TIMESTAMP 20110728L // YYYYMMDD
|
---|
41 |
|
---|
42 |
|
---|
43 | /*
|
---|
44 | // !! ATTENTION: keep in sync with drv32\startup.asm !!
|
---|
45 |
|
---|
46 | #define DRVNAME "SBLIVE"
|
---|
47 | #define DRVNAME16 "SBLIVE1$" // 8 characters, filled up with spaces
|
---|
48 | #define DRVNAME32 "SBLIVE2$" // 8 characters, filled up with spaces
|
---|
49 | #define DRIVER16_FILE "SBLIVE16.SYS"
|
---|
50 | #define DRIVER32_FILE "SBLIVE32.SYS"
|
---|
51 |
|
---|
52 | #define BUILDER_NAME "Rudi"
|
---|
53 | #define PRODUCT_NAME "Soundblaster Live!"
|
---|
54 | #define VENDOR_NAME "Creative Labs"
|
---|
55 |
|
---|
56 | #define PRODUCT_VERSION "0.7.0" // version
|
---|
57 | #define PRODUCT_TIMESTAMP 20011222L // YYYYMMDD
|
---|
58 | */
|
---|
59 |
|
---|
60 | #endif //__SBVERSION_H__
|
---|
61 |
|
---|