freebsd-dev/sys/gnu/i386/isa/sound/awe_version.h
John-Mark Gurney 2796129cbb import of GPL'd AWE32 Sound Driver v0.4.2c
Submitted by:	Randall Hopper
1998-01-08 22:17:17 +00:00

13 lines
313 B
C

/* AWE32 driver version number */
#ifndef AWE_VERSION_H_DEF
#define AWE_VERSION_H_DEF
#define AWE_VERSION_NUMBER 0x00040203
#define AWEDRV_VERSION "0.4.2c"
#define AWE_MAJOR_VERSION(id) (((id) >> 16) & 0xff)
#define AWE_MINOR_VERSION(id) (((id) >> 8) & 0xff)
#define AWE_TINY_VERSION(id) ((id) & 0xff)
#endif