Unresolved external symbol __vsnprintf … (in dxerr.lib)?

后端 未结 7 733
感情败类
感情败类 2020-12-04 14:36

I am running a DirectX 11 application on windows 7 and visual studio community 2015 RC. I\'m still using functions from the DX SDK. It worked fine on VS2013 but when I switc

7条回答
  •  情深已故
    2020-12-04 15:09

    HACKY but you could patch dxerr.lib.

    Replace __vsnprintf with _vsnprintf (with a null at the end to account for the removed underscore at the beginning)

提交回复
热议问题