mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
1332805bb6
This makes all builds' audio compatible with downlevel Windows and removes the need for developers to install the June 2010 DirectX SDK.
19 lines
468 B
C
19 lines
468 B
C
/*==========================================================================;
|
|
*
|
|
*
|
|
* File: dxsdkver.h
|
|
* Content: DirectX SDK Version Include File
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef _DXSDKVER_H_
|
|
#define _DXSDKVER_H_
|
|
|
|
#define _DXSDK_PRODUCT_MAJOR 9
|
|
#define _DXSDK_PRODUCT_MINOR 29
|
|
#define _DXSDK_BUILD_MAJOR 1962
|
|
#define _DXSDK_BUILD_MINOR 0
|
|
|
|
#endif // _DXSDKVER_H_
|
|
|