mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
718 B
33 lines
718 B
//==========================================================================;
|
|
//
|
|
// msacmmap.rcv
|
|
//
|
|
// Copyright (C) 1992-1993 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// History:
|
|
// 9/18/93 cjp [curtisp]
|
|
//
|
|
//==========================================================================;
|
|
|
|
#ifdef WIN32
|
|
#include <winver.h>
|
|
#else
|
|
#include <ver.h>
|
|
#endif
|
|
|
|
#include <verinfo.h>
|
|
|
|
#ifndef WIN32
|
|
#define VERSIONNAME "msacm.drv\0"
|
|
#else
|
|
#define VERSIONNAME "msacm32.drv\0"
|
|
#endif
|
|
|
|
#define VERSIONDESCRIPTION "Microsoft Sound Mapper\0"
|
|
#define VERSIONTYPE VFT_DRV
|
|
#define VERSIONSUBTYPE VFT2_DRV_INSTALLABLE
|
|
|
|
#include <verinfo.ver>
|