| 1 | /* $Id: version.h,v 1.1.1.1 2003/07/02 13:56:58 eleph Exp $ */ | 
|---|
| 2 | /* | 
|---|
| 3 | * Header for version string | 
|---|
| 4 | * | 
|---|
| 5 | * (C) 2000-2002 InnoTek Systemberatung GmbH | 
|---|
| 6 | * (C) 2000-2001 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 |  | 
|---|
| 25 | #ifndef __UNIAUDVERSION_H__ | 
|---|
| 26 | #define __UNIAUDVERSION_H__ | 
|---|
| 27 |  | 
|---|
| 28 |  | 
|---|
| 29 | #define BUILDER_NAME            "Netlabs" | 
|---|
| 30 | #define PRODUCT_NAME            "OS/2 Universal Audio Driver" | 
|---|
| 31 | #define VENDOR_NAME             "Netlabs" | 
|---|
| 32 | #define PRODUCT_VERSION         "1.1.4RC2"         // version | 
|---|
| 33 | #define PRODUCT_TIMESTAMP       20061125L       // YYYYMMDD | 
|---|
| 34 |  | 
|---|
| 35 |  | 
|---|
| 36 | #define ALSA_VERSION            "1.1.4RC2" | 
|---|
| 37 | #define RM_DRIVER_NAME          "UNIAUD32.SYS" | 
|---|
| 38 | #define RM_DRIVER_DESCRIPTION   "OS/2 Universal Audio Driver" | 
|---|
| 39 | #define RM_ADAPTER_NAME         "OS/2 Universal Audio" | 
|---|
| 40 | #define RM_DRIVER_VENDORNAME    "InnoTek Systemberatung GmbH" | 
|---|
| 41 | #define RM_DRIVER_BUILDYEAR     (PRODUCT_TIMESTAMP / 10000) | 
|---|
| 42 | #define RM_DRIVER_BUILDMONTH    ((PRODUCT_TIMESTAMP / 100) % 100) | 
|---|
| 43 | #define RM_DRIVER_BUILDDAY      (PRODUCT_TIMESTAMP % 100) | 
|---|
| 44 | #define UNIAUD_VERSION          114 | 
|---|
| 45 |  | 
|---|
| 46 |  | 
|---|
| 47 | #endif //__UNIAUDVERSION_H__ | 
|---|