LNK2019 DirectX未解析的外部符号;文件dxerr.lib

时间:2018-01-25 17:35:37

标签: c++ visual-studio-2017 directx lnk2019

得到LINK2019错误,我无法弄清楚。错误代码:严重级代码描述项目文件行抑制状态 错误LNK2019未解析的外部符号__vsnprintf在函数&#34中引用; long __stdcall StringVPrintfWorkerA(char *,unsigned int,unsigned int *,char const *,char *)" (?StringVPrintfWorkerA @@ YGJPADIPAIPBD0 @ Z)Direct X C:\ Visual Studio Programs \ Direct X \ Direct X \ dxerr.lib(dxerra.obj)1

main.cpp中:

#include <Windows.h>
#include <memory>
#include "BlankDemo.h"


LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
    WPARAM wParam, LPARAM lParam);

int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE prevInstance,
    LPWSTR cmdLine, int cmdShow)
{
    UNREFERENCED_PARAMETER(prevInstance);
    UNREFERENCED_PARAMETER(cmdLine);

    WNDCLASSEX wndClass = { 0 };
    wndClass.cbSize = sizeof(WNDCLASS);
    wndClass.style = CS_HREDRAW | CS_VREDRAW;
    wndClass.lpfnWndProc = WndProc;
    wndClass.hInstance = hInstance;
    wndClass.hCursor = LoadCursor(NULL, IDC_ARROW);
    wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
    wndClass.lpszMenuName = NULL;
    wndClass.lpszClassName = "DX11BookWindowClass";

    if (!RegisterClassEx(&wndClass))
        return -1;

    RECT rc = { 0, 0, 640, 480 };
    AdjustWindowRect(&rc, WS_EX_OVERLAPPEDWINDOW, FALSE);

    HWND hwnd = CreateWindowA("DX11BookWindowClass", "BlankWin32Window",
        WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, rc.right - rc.left,
        rc.bottom - rc.top, NULL, NULL, hInstance, NULL);

    if (!hwnd)
        return -1;

    ShowWindow(hwnd, cmdShow);

    std::auto_ptr<Dx11DemoBase> demo(new BlankDemo());

    // Demo Initialize
    bool result = demo->Initialize(hInstance, hwnd);

    // Error reporting if there is an issue
    if (result == false)
        return -1;

    MSG msg = { 0 };

    while (msg.message != WM_QUIT)
    {
        if (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
        {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }

        else
        {
            // Update and Draw
            demo->Update(0.0f);
            demo->Render();
        }
    }
    // Demo Shutdown
    demo->Shutdown();

    return static_cast<int>(msg.wParam);
}

LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    PAINTSTRUCT paintStruct;
    HDC hDC;

    switch (message)
    {
    case WM_PAINT:
        hDC = BeginPaint(hwnd, &paintStruct);
        EndPaint(hwnd, &paintStruct);
        break;

    case WM_DESTROY:
        PostQuitMessage(0);
        break;

    defualt:
        return DefWindowProc(hwnd, message, wParam, lParam);
    }
    return 0;
}

// implementation of the BlankDemo class
BlankDemo::BlankDemo()
{

}

BlankDemo::~BlankDemo()
{

}

bool BlankDemo::LoadContent()
{
    return true;
}

void BlankDemo::UnloadContent()
{

}

void BlankDemo::Update(float dt)
{

}

void BlankDemo::Render()
{
    if (d3dContext_ == 0)
        return;

    float clearColor[4] = { 0.0f, 0.0f, 0.25f, 1.0f };
    d3dContext_->ClearRenderTargetView(backBufferTarget_, clearColor);

    swapChain_->Present(0, 0);
}

BlankDemo.h文件:

#pragma once
#ifndef _BLANK_DEMO_H_
#define _BLANK_DEMO_H_
#include "Dx11DemoBase.h"

class BlankDemo : public Dx11DemoBase
{
public:
    BlankDemo();
    virtual ~BlankDemo();

    bool LoadContent();
    void UnloadContent();

    void Update(float dt);
    void Render();
};

#endif // !_BLANK_DEMO_H_

   Dx11DemoBase::Dx11DemoBase() : driverType_(D3D_DRIVER_TYPE_NULL),
featureLevel_(D3D_FEATURE_LEVEL_11_0), d3dDevice_(0), d3dContext_(0),
swapChain_(0), backBufferTarget_(0)
{

}

Dx11DemoBase::~Dx11DemoBase()
{
    Shutdown();
}

bool Dx11DemoBase::LoadContent()
{
    // Override with demo specifics, if any...
    return true;
}

void Dx11DemoBase::UnloadContent()
{
    // Override with demo specifics, if any...
}

void Dx11DemoBase::Shutdown()
{
    UnloadContent();

    if (backBufferTarget_) backBufferTarget_->Release();
    if (swapChain_) swapChain_->Release();
    if (d3dContext_) d3dContext_->Release();
    if (d3dDevice_) d3dDevice_->Release();
    d3dDevice_ = 0;
    d3dContext_ = 0;
    swapChain_ = 0;
    backBufferTarget_ = 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

bool Dx11DemoBase::Initialize(HINSTANCE hInstance, HWND hwnd)
{
    hInstance_ = hInstance;
    hwnd_ = hwnd;

    RECT dimensions;
    GetClientRect(hwnd, &dimensions);

    unsigned int width = dimensions.right - dimensions.left;
    unsigned int height = dimensions.bottom - dimensions.top;

    D3D_DRIVER_TYPE driverTypes[] =
    {
        D3D_DRIVER_TYPE_HARDWARE, D3D_DRIVER_TYPE_WARP, D3D_DRIVER_TYPE_SOFTWARE
    };

    unsigned int totalDriverTypes = ARRAYSIZE(driverTypes);

    D3D_FEATURE_LEVEL featureLevels[] =
    {
        D3D_FEATURE_LEVEL_11_0,
        D3D_FEATURE_LEVEL_10_1,
        D3D_FEATURE_LEVEL_10_0,
    };

    unsigned int totalFeatureLevels = ARRAYSIZE(featureLevels);

    DXGI_SWAP_CHAIN_DESC swapChainDesc;
    ZeroMemory(&swapChainDesc, sizeof(swapChainDesc));
    swapChainDesc.BufferCount = 1;
    swapChainDesc.BufferDesc.Width = width;
    swapChainDesc.BufferDesc.Height = height;
    swapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
    swapChainDesc.BufferDesc.RefreshRate.Numerator = 60;
    swapChainDesc.BufferDesc.RefreshRate.Denominator = 1;
    swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
    swapChainDesc.OutputWindow = hwnd;
    swapChainDesc.Windowed = true;
    swapChainDesc.SampleDesc.Count = 1;
    swapChainDesc.SampleDesc.Quality = 0;

    unsigned int creationFlags = 0;

#ifdef _DEBUG
    creationFlags |= D3D11_CREATE_DEVICE_DEBUG;
#endif

    HRESULT result;
    unsigned int driver = 0;

    for (driver = 0; driver < totalDriverTypes; ++driver)
    {
        result = D3D11CreateDeviceAndSwapChain(0, driverTypes[driver], 0,
            creationFlags, featureLevels, totalFeatureLevels, D3D11_SDK_VERSION,
            &swapChainDesc, &swapChain_, &d3dDevice_, &featureLevel_, &d3dContext_);

        if (SUCCEEDED(result))
        {
            driverType_ = driverTypes[driver];
            break;
        }
    }
    if (FAILED(result))
    {
    DXTRACE_MSG("Failed to create the Direct3d device!");
        return false;
    }

    ID3D11Texture2D* backBufferTexture;

    result = swapChain_->GetBuffer(0, _uuidof(ID3D11Texture2D), (LPVOID*)&backBufferTexture);

    if (FAILED(result))
    {
        DXTRACE_MSG("Failed to get the swap chain back buffer!");
        return false;
    }
    result = d3dDevice_->CreateRenderTargetView(backBufferTexture, 0, &backBufferTarget_);

    if (backBufferTexture)
        backBufferTexture->Release();
    if (FAILED(result))
    {
        DXTRACE_MSG("Failed to create the render target view!");
        return false;
    }

    d3dContext_->OMSetRenderTargets(1, &backBufferTarget_, 0);

    D3D11_VIEWPORT viewport;
    viewport.Width = static_cast<float>(width);
    viewport.Height = static_cast<float>(height);
    viewport.MinDepth = 0.0f;
    viewport.MaxDepth = 1.0f;
    viewport.TopLeftX = 0.0f;
    viewport.TopLeftY = 0.0f;

    d3dContext_->RSSetViewports(1, &viewport);

    return LoadContent();
}

最后,Dx11DemoBase.h标题:

#pragma once

#ifndef _DEMO_BASE_H_
#define _DEMO_BASE_H_

#include <d3d11.h>
#include <D3DX11.h>
#include <dxerr.h>

class Dx11DemoBase
{
public:
    Dx11DemoBase();
    virtual ~Dx11DemoBase();

    bool Initialize(HINSTANCE hInstance, HWND hwnd);
    void Shutdown();

    virtual bool LoadContent();
    virtual void UnloadContent();

    virtual void Update(float dt) = 0;
    virtual void Render() = 0;

protected:

    HINSTANCE hInstance_;

    HWND hwnd_;

    D3D_DRIVER_TYPE driverType_;
    D3D_FEATURE_LEVEL featureLevel_;

    ID3D11Device* d3dDevice_;
    ID3D11DeviceContext* d3dContext_;
    IDXGISwapChain* swapChain_;
    ID3D11RenderTargetView* backBufferTarget_;
};

#endif // !_DEMO_BASE_H_

2 个答案:

答案 0 :(得分:1)

旧版DirectX SDK已弃用,因此自Visual Studio 2010 RTM(2010年6月)发布以来尚未正式更新。见MSDN

这有一些具体含义:

  • Windows 8.0 SDK,Windows 8.1 SDK和Windows 10 SDK都有较新的标头,而不是重叠的旧版DirectX SDK。您仍然可以在VS 2012,2013,2015或2017中使用它,但您需要在VC ++目录设置中反转传统的include / lib路径顺序。此MSDN主题页面底部还介绍了一些其他怪癖。另请参阅The Zombie DirectX SDK

  • 旧版DirectX SDK中的DLL导入库缺少Windows 8.x或Windows 10 SDK中存在的某些导入。它们通常适用于所有C / C ++编译器,因为它们是相当标准的Win32,没有任何特定于版本的CRT引用。

  • 但是,不保证静态库在C / C ++编译器的版本与版本之间是二进制兼容的。 dxguid.lib只包含一些数据,因此它通常有效,但dxerr.lib有实际代码。因此,随着VS 2015中C / C ++运行时的重大变化,它不再没有链接错误。

dxerr.lib问题有两个基本解决方案:

  1. 构建您自己的代码副本。它可用here。这是最强大的,因为它始终与您的编译器工具集匹配。

  2. 您可以添加legacy_stdio_definitions.lib,但请记住,您已经依赖非常过时的文件,因此您应该努力删除/最小化旧版DirectX SDK的使用。

  3. 许多针对DirectX 11和书籍的在线教程已经过时了w.r.t。到DirectX SDK仍然使用{@ 1}},这也是不推荐使用的。有许多开源替代品可用于此功能。请参阅Living without D3DX

      

    所有这一切,这个问题已经在StackOverflow上得到了回答,如果您刚刚搜索dxerr,就会显示出来。

答案 1 :(得分:0)

按照此答案的建议,将legacy_stdio_definitions.lib添加到Additional dependencies中的Project properties > Configuration Properties > Linker > Input列表中:https://stackoverflow.com/a/34230122/6693304