DLL入门浅析(3)——从DLL中导出变量

本文介绍从DLL中导出变量的两种方法:使用__declspec(dllexport)进行导出声明及使用模块定义文件(.def)进行导出声明。同时,还提供了在应用程序中调用这些变量的隐式链接和显式链接两种方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原文地址:http://www.cppblog.com/suiaiguo/archive/2009/07/20/90643.html

   前面介绍了怎么从DLL中导出函数,下面我们来看一下如何从DLL中导出变量来。

   声明为导出变量时,同样有两种方法:
   第一种是用__declspec进行导出声明

#ifndef _DLL_SAMPLE_H
#define _DLL_SAMPLE_H

// 如果定义了C++编译器,那么声明为C链接方式
#ifdef __cplusplus
extern " C " {
#endif

// 通过宏来控制是导入还是导出
#ifdef _DLL_SAMPLE
#define DLL_SAMPLE_API __declspec(dllexport)
#else
#define DLL_SAMPLE_API __declspec(dllimport)
#endif

// 导出/导入变量声明
DLL_SAMPLE_API extern int DLLData;

#undef DLL_SAMPLE_API

#ifdef __cplusplus
}

#endif

#endif

  第二种是用模块定义文件(.def)进行导出声明

LIBRARY DLLSample
DESCRIPTION
" my simple DLL "
EXPORTS
        DLLData DATA  ;DATA表示这是数据(变量)

   下面是DLL的实现文件
#include " stdafx.h "
#define _DLL_SAMPLE

#ifndef _DLL_SAMPLE_H
#include
" DLLSample.h "
#endif

#include
" stdio.h "

int DLLData;

// APIENTRY声明DLL函数入口点
BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
 
switch (ul_reason_for_call)
 
{
  
case DLL_PROCESS_ATTACH:
      DLLData
= 123// 在入口函数中对变量进行初始化
      break
  
case DLL_THREAD_ATTACH:
  
case DLL_THREAD_DETACH:
  
case DLL_PROCESS_DETACH:
   
break;
 }

 
return TRUE;
}


同样,应用程序调用DLL中的变量也有两种方法。
第一种是隐式链接:

#include < stdio.h >
#include
" DLLSample.h "

#pragma comment(lib,
" DLLSample.lib " )


int main( int argc, char * argv[])
{
 printf(
"%d ", DLLSample);
 
return 0;
}



第二种是显式链接:

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

int main()
{
       
int my_int;
        HINSTANCE hInstLibrary
= LoadLibrary("DLLSample.dll");

       
if (hInstLibrary == NULL)
       
{
         FreeLibrary(hInstLibrary);
        }

        my_int
= *(int*)GetProcAddress(hInstLibrary, "DLLData");
       
if (dllFunc == NULL)
       
{
         FreeLibrary(hInstLibrary);
        }

        std::cout
<<my_int;
        std::cin.
get();
        FreeLibrary(hInstLibrary);
       
return(1);
}

通过GetProcAddress取出的函数或者变量都是地址,因此,需要解引用并且转类型。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值