Files
itgmania212121/src/archutils/Win32/DirectXGuids.cpp
T
Tracy Ward cdc4bd9da2 Replace missing dxguid.lib functionality
One thing that did not make it into the move to the Windows SDK is the
dxguid.lib library, which defined the IIDs for all of the DirectX interfaces.
This replaces that, defining the ones we use. Currently, we only need to
define the DirectInput IIDs, so that is all that is here.

(backport from master)
2019-10-04 08:48:19 -04:00

14 lines
438 B
C++

#include "global.h"
// The purpose of this file is to define the various GUIDs we need, which
// we used to get via dxguid.lib in the DirectX SDK. The DirectX SDK has
// been discontinued and (mostly) rolled into the Windows SDK, but it is
// missing a few features. One of which is dxguid.lib.
// if you wind up running into other GUIDs you need, add them here
#define INITGUID
#define DIRECTINPUT_VERSION 0x0800
#include <dinput.h>