I am moving from Visual Studio Express to Netbeans with MinGW. However I cannot resolve one include:
#include <dwmapi.h>
#pragma comment(lib, "dwmapi.lib")
However the following includes seem to work:
#include <d3d9.h>
#include <d3dx9.h>
#pragma comment(lib, "d3d9.lib")
#pragma comment(lib, "d3dx9.lib")
I had to add the DirectX SDK to the linker and include options of the compiler (-I and -l). However I don't know how to do that with the dwmapi.h because I did not download any other SDK.
Does someone know how to resolve this? Thank you very much in advance.