The MASM Forum

General => The Campus => Topic started by: BugCatcher on January 13, 2017, 12:45:44 AM

Title: Reply
Post by: BugCatcher on January 13, 2017, 12:45:44 AM
 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 .
   
Title: Re: Reply
Post by: jj2007 on January 13, 2017, 02:37:55 AM
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)
Title: Re: Reply
Post by: Siekmanski on January 13, 2017, 10:01:18 PM
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.
Title: Re: Reply
Post by: Siekmanski on January 14, 2017, 10:44:09 AM
Try this one, it's an empty project....
Title: Re: Reply
Post by: BugCatcher on January 15, 2017, 12:05:40 AM
Thx Siekmanski .