VC通过函数名调用DLL的标准范例

简介: VC通过函数名调用DLL的标准范例

DLL

extern "C" __declspec(dllexport) void GetDefaultPrinterName(char* name);
extern "C" __declspec(dllexport) void GetDefaultPrinterName(char* name)
{
    //
}

调用代码

#include <iostream>
#include<windows.h>
#include<string>
using namespace std;
#define TEST_DLL_PATH        "D:\\Office-5.0-project\\c\\windows-printer\\Debug\\TPrinter.dll"
#define TEST_FUNCTION_NAME   "GetDefaultPrinterName"
typedef void( *TestFunction)(char*);
int main()
{
  cout << "Start" << endl;
    HINSTANCE hDLL = LoadLibrary(TEST_DLL_PATH);
  if (hDLL == NULL)
  {
     cout << TEST_DLL_PATH << " ERROR: " << GetLastError() << endl;
  return -1;
  }
  cout << TEST_DLL_PATH << " " << hDLL << endl;
  TestFunction function=(TestFunction)GetProcAddress(hDLL,"GetDefaultPrinterName");
    if (function == NULL)
    {
     cout << TEST_DLL_PATH << " ERROR:" << GetLastError() << endl;
  return -1;
    }
  cout << TEST_FUNCTION_NAME << " " << function << endl;
  char name[256] = {0};
    function(name);
    cout<<"RESULT="<< name << endl;
    FreeLibrary(hDLL);//卸载dllTest.dll文件;
  cout << "End" << endl;
    return 0;
}


测试结果

D:\Office-5.0-project\c\Debug>TaishanDllTest.exe
Start
D:\Office-5.0-project\c\windows-printer\Debug\TPrinter.dll 63B00000
GetDefaultPrinterName 63B012DF
RESULT=Microsoft XPS Document Writer
End
目录
相关文章
|
7月前
|
C++
win32编程 -- 动态库中声明类
win32编程 -- 动态库中声明类
36 0
|
存储 SQL Java
通过DLL文件实现函数共有及通过调用_stdcall来减少程序文件的大小
通过DLL文件实现函数共有及通过调用_stdcall来减少程序文件的大小
81 0
|
C++ 索引
VC通过函数索引调用DLL范例
VC通过函数索引调用DLL范例
67 0
|
C#
C#调用dll代码范例
C#调用dll代码范例
122 0
|
C# C++
VS2017下创建C++动态库导出符合并完成调用测试(DLL可供C#调用)
VS2017下创建C++动态库导出符合并完成调用测试(DLL可供C#调用)
474 0
VS2017下创建C++动态库导出符合并完成调用测试(DLL可供C#调用)
VC通过函数名调用DLL的标准范例
VC通过函数名调用DLL的标准范例
99 0
|
安全 编译器 C语言

热门文章

最新文章