I'm using Visual Studio 2013 to create a new MFC Application. I created the application using the setup wizard, left it on all the default values.
When testing if it even runs before adding anything it gave the compile error:
IntelliSense: identifier "D3DCOLORVALUE" is undefined
followed by a lot of:
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
Why would this be happening in a stock standard application straight out of the wizard? And how would I get this working?
D3DCOLORVALUE
is Direct3D stuff. In which source file do you have thisD3DCOLORVALUE
symbol? How exactly did you proceed to create the application with the wizard? – Jabberwocky