我在VS2015中创建了一个新的Windows通用DLL项目。我尝试使用AllocConsole()来创建控制台窗口,但我收到了错误
error C3861: 'FreeConsole': identifier not found
error C3861: 'AllocConsole': identifier not found
error C2065: 'FILE': undeclared identifier
error C2065: 'stream': undeclared identifier
error C2065: 'stream': undeclared identifier
error C2065: 'stdout': undeclared identifier
error C3861: 'freopen_s': identifier not found
这是在包括windows.h,wincon.h和consoleapi.h之后(不知道这是什么,F12把我带到了它)
我猜测这是一个阻止其发挥作用的项目设置?