Source code of Windows XP (NT5)
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.
|
|
/*==========================================================================
* * Copyright (C) 1999 Microsoft Corporation. All Rights Reserved. * * File: dpvcfg.h * Content: Switch for determining build info. * History: * Date By Reason * ==== ======= ======================================================== * 02/25/00 rodtoll Created ***************************************************************************/
#ifndef __DPVCFG_H
#define __DPVCFG_H
#if defined(VOICE_BUILD_GAMEVOICE)
#include "gvcfg.h"
#elif defined(VOICE_BUILD_ALLEGIANCE)
#include "msrgcfg.h"
#else
#include "dxcfg.h"
#endif
#endif
|