首页 > 开发 > 综合 > 正文

用Visual C#调用Windows API函数(转)

2024-07-21 02:20:15
字体:
来源:转载
供稿:网友
用visual c#调用windows api函数

北京机械工业学院研00级(100085)冉林仓  

    api函数是构筑windws应用程序的基石,每一种windows应用程序开发工具,它提供的底层函数都间接或直接地调用了windows api函数,同时为了实现功能扩展,一般也都提供了调用windowsapi函数的接口, 也就是说具备调用动态连接库的能力。visual c#和其它开发工具一样也能够调用动态链接库的api函数。.net框架本身提供了这样一种服务,允许受管辖的代码调用动态链接库中实现的非受管辖函数,包括操作系统提供的windows api函数。它能够定位和调用输出函数,根据需要,组织其各个参数(整型、字符串类型、数组、和结构等等)跨越互操作边界。

下面以c#为例简单介绍调用api的基本过程:  
动态链接库函数的声明  
 动态链接库函数使用前必须声明,相对于vb,c#函数声明显得更加罗嗦,前者通过 api viewer粘贴以后,可以直接使用,而后者则需要对参数作些额外的变化工作。

 动态链接库函数声明部分一般由下列两部分组成,一是函数名或索引号,二是动态链接库的文件名。  
  譬如,你想调用user32.dll中的messagebox函数,我们必须指明函数的名字messageboxa或messageboxw,以及库名字user32.dll,我们知道win32 api对每一个涉及字符串和字符的函数一般都存在两个版本,单字节字符的ansi版本和双字节字符的unicode版本。

 下面是一个调用api函数的例子:  
[dllimport("kernel32.dll", entrypoint="movefilew", setlasterror=true,  
charset=charset.unicode, exactspelling=true,  
callingconvention=callingconvention.stdcall)]  
public static extern bool movefile(string src, string dst);  

 其中入口点entrypoint标识函数在动态链接库的入口位置,在一个受管辖的工程中,目标函数的原始名字和序号入口点不仅标识一个跨越互操作界限的函数。而且,你还可以把这个入口点映射为一个不同的名字,也就是对函数进行重命名。重命名可以给调用函数带来种种便利,通过重命名,一方面我们不用为函数的大小写伤透脑筋,同时它也可以保证与已有的命名规则保持一致,允许带有不同参数类型的函数共存,更重要的是它简化了对ansi和unicode版本的调用。charset用于标识函数调用所采用的是unicode或是ansi版本,exactspelling=false将告诉编译器,让编译器决定使用unicode或者是ansi版本。其它的参数请参考msdn在线帮助.

 在c#中,你可以在entrypoint域通过名字和序号声明一个动态链接库函数,如果在方法定义中使用的函数名与dll入口点相同,你不需要在entrypoint域显示声明函数。否则,你必须使用下列属性格式指示一个名字和序号。

[dllimport("dllname", entrypoint="functionname")]  
[dllimport("dllname", entrypoint="#123")]  
值得注意的是,你必须在数字序号前加“#”  
下面是一个用msgbox替换messagebox名字的例子:  
[c#]  
using system.runtime.interopservices;  

public class win32 {  
[dllimport("user32.dll", entrypoint="messagebox")]  
public static extern int msgbox(int hwnd, string text, string caption, uint type);  
}  
许多受管辖的动态链接库函数期望你能够传递一个复杂的参数类型给函数,譬如一个用户定义的结构类型成员或者受管辖代码定义的一个类成员,这时你必须提供额外的信息格式化这个类型,以保持参数原有的布局和对齐。

c#提供了一个structlayoutattribute类,通过它你可以定义自己的格式化类型,在受管辖代码中,格式化类型是一个用structlayoutattribute说明的结构或类成员,通过它能够保证其内部成员预期的布局信息。布局的选项共有三种:

布局选项  
描述  
layoutkind.automatic  
为了提高效率允许运行态对类型成员重新排序。  
注意:永远不要使用这个选项来调用不受管辖的动态链接库函数。  
layoutkind.explicit  
对每个域按照fieldoffset属性对类型成员排序  
layoutkind.sequential  
对出现在受管辖类型定义地方的不受管辖内存中的类型成员进行排序。  
传递结构成员  
下面的例子说明如何在受管辖代码中定义一个点和矩形类型,并作为一个参数传递给user32.dll库中的ptinrect函数,  
函数的不受管辖原型声明如下:  
bool ptinrect(const rect *lprc, point pt);  
注意你必须通过引用传递rect结构参数,因为函数需要一个rect的结构指针。  
[c#]  
using system.runtime.interopservices;  

[structlayout(layoutkind.sequential)]  
public struct point {  
public int x;  
public int y;  
}  

[structlayout(layoutkind.explicit]  
public struct rect {  
[fieldoffset(0)] public int left;  
[fieldoffset(4)] public int top;  
[fieldoffset(8)] public int right;  
[fieldoffset(12)] public int bottom;  
}  

class win32api {  
[dllimport("user32.dll")]  
public static extern bool ptinrect(ref rect r, point p);  
}  
类似你可以调用getsysteminfo函数获得系统信息:  
? using system.runtime.interopservices;  
[structlayout(layoutkind.sequential)]  
public struct system_info {  
public uint dwoemid;  
public uint dwpagesize;  
public uint lpminimumapplicationaddress;  
public uint lpmaximumapplicationaddress;  
public uint dwactiveprocessormask;  
public uint dwnumberofprocessors;  
public uint dwprocessortype;  
public uint dwallocationgranularity;  
public uint dwprocessorlevel;  
public uint dwprocessorrevision;  
}  




[dllimport("kernel32")]  
static extern void getsysteminfo(ref system_info psi);  

system_info psi = new system_info();  
getsysteminfo(ref psi);  

类成员的传递  
同样只要类具有一个固定的类成员布局,你也可以传递一个类成员给一个不受管辖的动态链接库函数,下面的例子主要说明如何传递一个sequential顺序定义的mysystemtime类给user32.dll的getsystemtime函数, 函数用c/c++调用规范如下:

void getsystemtime(systemtime* systemtime);  
不像传值类型,类总是通过引用传递参数.  
[c#]  
[structlayout(layoutkind.sequential)]  
public class mysystemtime {  
public ushort wyear;  
public ushort wmonth;  
public ushort wdayofweek;  
public ushort wday;  
public ushort whour;  
public ushort wminute;  
public ushort wsecond;  
public ushort wmilliseconds;  
}  
class win32api {  
[dllimport("user32.dll")]  
public static extern void getsystemtime(mysystemtime st);  
}  
回调函数的传递:  
从受管辖的代码中调用大多数动态链接库函数,你只需创建一个受管辖的函数定义,然后调用它即可,这个过程非常直接。  
如果一个动态链接库函数需要一个函数指针作为参数,你还需要做以下几步:  
首先,你必须参考有关这个函数的文档,确定这个函数是否需要一个回调;第二,你必须在受管辖代码中创建一个回调函数;最后,你可以把指向这个函数的指针作为一个参数创递给dll函数,.

回调函数及其实现:  
回调函数经常用在任务需要重复执行的场合,譬如用于枚举函数,譬如win32 api 中的enumfontfamilies(字体枚举), enumprinters(打印机), enumwindows (窗口枚举)函数. 下面以窗口枚举为例,谈谈如何通过调用enumwindow 函数遍历系统中存在的所有窗口

分下面几个步骤:  
1. 在实现调用前先参考函数的声明  
bool enumwindows(wndenumproc lpenumfunc, lparmam iparam)  
显然这个函数需要一个回调函数地址作为参数.  
2. 创建一个受管辖的回调函数,这个例子声明为代表类型(delegate),也就是我们所说的回调,它带有两个参数hwnd和lparam,第一个参数是一个窗口句柄,第二个参数由应用程序定义,两个参数均为整形。

  当这个回调函数返回一个非零值时,标示执行成功,零则暗示失败,这个例子总是返回true值,以便持续枚举。  
3. 最后创建以代表对象(delegate),并把它作为一个参数传递给enumwindows 函数,平台会自动地 把代表转化成函数能够识别的回调格式。

[c#]  
using system;  
using system.runtime.interopservices;  

public delegate bool callback(int hwnd, int lparam);  

public class enumreportapp {  

[dllimport("user32")]  
public static extern int enumwindows(callback x, int y);  

public static void main()  
{  
callback mycallback = new callback(enumreportapp.report);  
enumwindows(mycallback, 0);  
}  

public static bool report(int hwnd, int lparam) {  
console.write("窗口句柄为");  
console.writeline(hwnd);  
return true;  
}  
}  



指针类型参数传递:  
 在windows api函数调用时,大部分函数采用指针传递参数,对一个结构变量指针,我们除了使用上面的类和结构方法传递参数之外,我们有时还可以采用数组传递参数。

 下面这个函数通过调用getusername获得用户名  
bool getusername(  
lptstr lpbuffer, // 用户名缓冲区  
lpdword nsize // 存放缓冲区大小的地址指针  
);  
   
[dllimport("advapi32.dll",  
entrypoint="getcomputername",  
exactspelling=false,  
setlasterror=true)]  
static extern bool getcomputername (  
[marshalas(unmanagedtype.lparray)] byte[] lpbuffer,  
  [marshalas(unmanagedtype.lparray)] int32[] nsize );  
 这个函数接受两个参数,char * 和int *,因为你必须分配一个字符串缓冲区以接受字符串指针,你可以使用string类代替这个参数类型,当然你还可以声明一个字节数组传递ansi字符串,同样你也可以声明一个只有一个元素的长整型数组,使用数组名作为第二个参数。上面的函数可以调用如下:

byte[] str=new byte[20];  
int32[] len=new int32[1];  
len[0]=20;  
getcomputername (str,len);  
messagebox.show(system.text.encoding.ascii.getstring(str));  
 最后需要提醒的是,每一种方法使用前必须在文件头加上:  
 using system.runtime.interopservices;  


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