GetProcAddress no puede encontrar mis funciones

Hice una DLL con una función llamada "render ()" y quiero cargarla dinámicamente en mi aplicación, pero GetProcAddress no puede encontrarla. Aquí está la DLL .h:

#ifdef D3D_API_EXPORTS
#define D3D_API_API __declspec(dllexport)
#else
#define D3D_API_API __declspec(dllimport)
#endif

D3D_API_API void render();

Y aquí está DLL .cpp:

#include "stdafx.h"
#include "D3D_API.h"
#include <iostream>

D3D_API_API void render()
{
    std::cout << "method called." << std::endl;
}

Aquí está la aplicación que intenta usar esa función:

#include "stdafx.h"
#include <windows.h>
#include <iostream>

int _tmain(int argc, _TCHAR* argv[])
{
    HINSTANCE myDLL = LoadLibrary( L"D3D_API.dll" );

    if (myDLL == NULL) {
        std::cerr << "Loading of D3D_API.dll failed!" << std::endl;
    }

    typedef void (WINAPI *render_t)();

    render_t render = (render_t)GetProcAddress( myDLL, "render" );

    if (render == NULL) {
        std::cerr << "render() not found in .dll!" << std::endl;
    }
    return 0;
}

Mi objetivo es hacer un motor 3D que admita D3D y OpenGL a través de sus propios .DLL, utilizando una API unificada. Miré el .dll en el bloc de notas y había una cadena "render".

Respuestas a la pregunta(1)

Su respuesta a la pregunta