dll开发及调用

这段时间用到了dll的调用,这里总结下,也方便我以后使用。

一、生成dll(基于VS2010)

1、选择“Win32 Console Application”,建立工程;

dll开发及调用

2、向导中的“Application type”选择Dll,并在“Additional options”选项中勾选“Empty Project”;

dll开发及调用

3、点击“Finish”完成向导;

4、添加文件CallTest1.cpp,添加如下代码:

#include <windows.h>

BOOL APIENTRY DllMain( HANDLE hModule, 
                       DWORD  ul_reason_for_call, 
                       LPVOID lpReserved
                     )
{
    return TRUE;
}

extern   "C"  _declspec(dllexport) int Max(int i1,int i2)
{   
    return (i1>i2)?i1:i2;
}

5、编译生成dll文件;

二、C++调用dll(基于VS2010)

1、选择“Win32 Console Application”,建立工程;

2、向导中的“Application type”选择“Console Application”,并在“Additional options”选项中勾选“Empty Project”;

3、点击“Finish”完成向导;

4、添加文件dllCall.cpp,添加如下代码:

//dll的显式调用

#include <stdio.h>
#include <windows.h>

typedef int(*pMax)(int a,int b);

void main(void)
{
    HINSTANCE hDLL;
    pMax Max;
    hDLL=LoadLibrary("dllTest1.dll");//加载动态链接库文件;
    Max=(pMax)GetProcAddress(hDLL,"Max");
    int a=Max(5,8);
    printf("比较的结果为%dn",a);
    FreeLibrary(hDLL);//卸载文件;
    getchar();
}

5、进入工程的属性选项,选择“Use Multi-Byte Character Set”;

dll开发及调用

6、编译程序,将dllTest1.dll文件copy到和dllCall.exe同一目录并运行;

dll开发及调用

三、c#调用dll(基于VS2010)

1、选择“Console Application”,建立dllCallCS工程;

dll开发及调用

2、在Program.cs文件中添加如下代码: using System.Runtime.InteropServices;

3、导入dll文件: [DllImport("dllTest1.dll")] public static extern int Max(int i1, int i2); 4、添加测试代码:

int ret = Max(1, 2);
if (1 == ret)
    Console.WriteLine("test");
else
    Console.WriteLine("test2");

5、编译程序,将dllTest1.dll文件copy到和dllCallCS.exe同一目录并运行;

dll开发及调用

附Program.cs文件完整代码:
dll开发及调用dll开发及调用View Code

using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Runtime.InteropServices;

    namespace dllCallCS
    {
        class Program
        {
            [DllImport("dllTest1.dll")]
            public static extern int Max(int i1, int i2);

            static void Main(string[] args)
            {
                int ret = Max(1, 2);
                if (1 == ret)
                    Console.WriteLine("test");
                else
                    Console.WriteLine("test2");
            }
        }
    }

四、Python调用dll(基于Python2.7)

1、建立文件dllCall3.py文件,填充如下代码:

from ctypes import *
dll = CDLL("dllTest1.dll")
print dll.Max(1, 3)

2、将dllTest1.dll文件复制到该目录,运行程序;

dll开发及调用

好,就这些了,希望对你有帮助。

本文github地址:

https://github.com/mike-zhang/mikeBlogEssays/blob/master/2013/20130107_dll开发及调用.md

欢迎补充
原文链接: https://www.cnblogs.com/MikeZhang/archive/2013/01/07/dllCall_20130107.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/74793

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月9日 下午4:34
下一篇 2023年2月9日 下午4:34

相关推荐