If I comment out the line, invoke D3DMatrixPerspectiveFovLH,addr matProj,FLT4(0.785398163397448279),fpAspectRatio,FLT4(1.0),FLT4(1024.0), the debug build works fine. With it in, I get an unknown linker error LNK1000. The proto for this is in D3DMathSSe2.Inc .
This is not part of the standard Masm32 installation, so it would be a good idea to post a link to where you got includes and libs. Also, one attached zip file is usually enough 8)
Hi BugCatcher,
You may get this error if you mix standard header files and your own files.
Include the standard headers first, followed by your own header files.
Try this one, it's an empty project....
Thx Siekmanski .