首页 > 开发 > 综合 > 正文

创建Win32 DLL,并在C#里面调用

2024-07-21 02:26:53
字体:
来源:转载
供稿:网友

这是三篇网上收集的技术文章的合集,分别讲解了如何创建win32 dll,然后如何在c#里面调用这个dll的教程。

首先是创建win32 dll的文章。讲解这个的文章到处都有,这里给出一篇我看过的:http://www.flipcode.com/articles/article_creatingdlls.shtml。win32 dll的创建其实在visual studio里面已经给出了比较好的模板,只是需要注意的,有些xxx_api宏并没有把extern "c"加进去,这样会造成在c#里面找不到这个函数的错误。所以,请记住,一定要把函数定义extern "c"。


第二篇文章来之于http://edu.100down.com/it/program/csharp/105256797.html,下面是转贴内容:

平台调用服务 (pinvoke) 允许托管代码调用在 dll 中实现的非托管函数。

本教程说明使用什么方法才能从 c# 调用非托管 dll 函数。该教程所讨论的属性允许您调用这些函数并使数据类型得到正确封送。

教程

c# 代码有以下两种可以直接调用非托管代码的方法:

  • 直接调用从 dll 导出的函数。
  • 调用 com 对象上的接口方法(有关更多信息,请参见 com interop 第一部分:c# 客户端教程)。

对于这两种技术,都必须向 c# 编译器提供非托管函数的声明,并且还可能需要向 c# 编译器提供如何封送与非托管代码之间传递的参数和返回值的说明。

该教程由下列主题组成:

  • 直接从 c# 调用 dll 导出
  • 默认封送处理和为非托管方法的参数指定自定义封送处理
  • 为用户定义的结构指定自定义封送处理
  • 注册回调方法

该教程包括下列示例:

  • 示例 1 使用 dllimport
  • 示例 2 重写默认封送处理
  • 示例 3 指定自定义封送处理

直接从 c# 调用 dll 导出

若要声明一个方法使其具有来自 dll 导出的实现,请执行下列操作:

  • 使用 c# 关键字 staticextern 声明方法。
  • dllimport 属性附加到该方法。dllimport 属性允许您指定包含该方法的 dll 的名称。通常的做法是用与导出的方法相同的名称命名 c# 方法,但也可以对 c# 方法使用不同的名称。
  • 还可以为方法的参数和返回值指定自定义封送处理信息,这将重写 .net framework 的默认封送处理。

示例 1

本示例显示如何使用 dllimport 属性通过调用 msvcrt.dll 中的 puts 输出消息。

// pinvoketest.csusing system;using system.runtime.interopservices;class platforminvoketest{    [dllimport("msvcrt.dll")]    public static extern int puts(string c);    [dllimport("msvcrt.dll")]    internal static extern int _flushall();    public static void main()     {        puts("test");        _flushall();    }}

输出

test

代码讨论

前面的示例显示了声明在非托管 dll 中实现的 c# 方法的最低要求。platforminvoketest.puts 方法用 staticextern 修饰符声明并且具有 dllimport 属性,该属性使用默认名称 puts 通知编译器此实现来自 msvcrt.dll。若要对 c# 方法使用不同的名称(如 putstring),则必须在 dllimport 属性中使用 entrypoint 选项,如下所示:

[dllimport("msvcrt.dll", entrypoint="puts")]

有关 dllimport 属性的语法的更多信息,请参见 dllimportattribute 类。

默认封送处理和为非托管方法的参数指定自定义封送处理

当从 c# 代码中调用非托管函数时,公共语言运行库必须封送参数和返回值。

对于每个 .net framework 类型均有一个默认非托管类型,公共语言运行库将使用此非托管类型在托管到非托管的函数调用中封送数据。例如,c# 字符串值的默认封送处理是封送为 lptstr(指向 tchar 字符缓冲区的指针)类型。可以在非托管函数的 c# 声明中使用 marshalas 属性重写默认封送处理。

示例 2

本示例使用 dllimport 属性输出一个字符串。它还显示如何通过使用 marshalas 属性重写函数参数的默认封送处理。

// marshal.csusing system;using system.runtime.interopservices;class platforminvoketest{    [dllimport("msvcrt.dll")]    public static extern int puts(        [marshalas(unmanagedtype.lpstr)]        string m);    [dllimport("msvcrt.dll")]    internal static extern int _flushall();    public static void main()     {        puts("hello world!");        _flushall();    }}

输出

运行此示例时,字符串

hello world!

将显示在控制台上。

代码讨论

在前面的示例中,puts 函数的参数的默认封送处理已从默认值 lptstr 重写为 lpstr。

marshalas 属性可以放置在方法参数、方法返回值以及结构和类的字段上。若要设置方法返回值的封送处理,请将 marshalas 属性与返回属性位置重写一起放置在方法上的属性块中。例如,若要显式设置 puts 方法返回值的封送处理:

...[dllimport("msvcrt.dll")] [return : marshalas(unmanagedtype.i4)]public static extern int puts( ...

有关 marshalas 属性的语法的更多信息,请参见 marshalasattribute 类。

注意   inout 属性可用于批注非托管方法的参数。它们与 midl 源文件中的 inout 修饰符的工作方式类似。请注意,out 属性与 c# 参数修饰符 out 不同。有关 inout 属性的更多信息,请参见 inattribute 类和 outattribute 类。

为用户定义的结构指定自定义封送处理

可以为传递到非托管函数或从非托管函数返回的结构和类的字段指定自定义封送处理属性。通过向结构或类的字段中添加 marshalas 属性可以做到这一点。还必须使用 structlayout 属性设置结构的布局,还可以控制字符串成员的默认封送处理,并设置默认封装大小。

示例 3

本示例说明如何为结构指定自定义封送处理属性。

请考虑下面的 c 结构:

typedef struct taglogfont {    long lfheight;    long lfwidth;    long lfescapement;    long lforientation;    long lfweight;    byte lfitalic;    byte lfunderline;    byte lfstrikeout;    byte lfcharset;    byte lfoutprecision;    byte lfclipprecision;    byte lfquality;    byte lfpitchandfamily;    tchar lffacename[lf_facesize]; } logfont; 

在 c# 中,可以使用 structlayoutmarshalas 属性描述前面的结构,如下所示:

// logfont.cs// compile with: /target:moduleusing system;using system.runtime.interopservices;[structlayout(layoutkind.sequential)]public class logfont {     public const int lf_facesize = 32;    public int lfheight;     public int lfwidth;     public int lfescapement;     public int lforientation;     public int lfweight;     public byte lfitalic;     public byte lfunderline;     public byte lfstrikeout;     public byte lfcharset;     public byte lfoutprecision;     public byte lfclipprecision;     public byte lfquality;     public byte lfpitchandfamily;    [marshalas(unmanagedtype.byvaltstr, sizeconst=lf_facesize)]    public string lffacename; }

有关 structlayout 属性的语法的更多信息,请参见 structlayoutattribute 类。

然后即可将该结构用在 c# 代码中,如下所示:

// pinvoke.cs// compile with: /addmodule:logfont.netmoduleusing system;using system.runtime.interopservices; class platforminvoketest{         [dllimport("gdi32.dll", charset=charset.auto)]      public static extern intptr createfontindirect(            [in, marshalas(unmanagedtype.lpstruct)]            logfont lplf   // characteristics            );       [dllimport("gdi32.dll")]      public static extern bool deleteobject(            intptr handle            );       public static void main()       {            logfont lf = new logfont();            lf.lfheight = 9;            lf.lffacename = "arial";            intptr handle = createfontindirect(lf);             if (intptr.zero == handle)            {                  console.writeline("can't creates a logical font.");            }            else            {                                    if (intptr.size == 4)                        console.writeline("{0:x}", handle.toint32());                  else                        console.writeline("{0:x}", handle.toint64());                           // delete the logical font created.                  if (!deleteobject(handle))                       console.writeline("can't delete the logical font");            }      }}

运行示例

c30a0ae5

代码讨论

在前面的示例中,createfontindirect 方法使用了一个 logfont 类型的参数。marshalasin 属性用于限定此参数。程序将由此方法返回的数值显示为十六进制大写字符串。

注册回调方法

若要注册调用非托管函数的托管回调,请用相同的参数列表声明一个委托并通过 pinvoke 传递它的一个实例。在非托管端,它将显示为一个函数指针。有关 pinvoke 和回调的更多信息,请参见平台调用详解。

例如,考虑以下非托管函数 myfunction,此函数要求 callback 作为其参数之一:

typedef void (__stdcall *pfn_mycallback)();int __stdcall myfunction(pfn_ mycallback callback);

若要从托管代码调用 myfunction,请声明该委托,将 dllimport 附加到函数声明,并根据需要封送任何参数或返回值:

public delegate void mycallback();[dllimport("mydll.dll")]public static extern void myfunction(mycallback callback);

同时,请确保委托实例的生存期覆盖非托管代码的生存期;否则,委托在经过垃圾回收后将不再可用。


 第三篇文章来之于http://www.njpro.cn/8918/showpost.aspx,一篇关于c/c++和c#中的数据类型的对应表。

wtypes.h 中的非托管类型非托管 c 语言类型托管类名说明
handlevoid*system.intptr32 位
byteunsigned charsystem.byte8 位
shortshortsystem.int1616 位
wordunsigned shortsystem.uint1616 位
intintsystem.int3232 位
uintunsigned intsystem.uint3232 位
longlongsystem.int3232 位
boollongsystem.int3232 位
dwordunsigned longsystem.uint3232 位
ulongunsigned longsystem.uint3232 位
charcharsystem.char用 ansi 修饰。
lpstrchar*system.stringsystem.stringbuilder用 ansi 修饰。
lpcstrconst char*system.stringsystem.stringbuilder用 ansi 修饰。
lpwstrwchar_t*system.stringsystem.stringbuilder用 unicode 修饰。
lpcwstrconst wchar_t*system.stringsystem.stringbuilder用 unicode 修饰。
floatfloatsystem.single32 位
doubledouble

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表