C#中如果要調用API函數,首先要聲明使用下面這個名字空間,否則無法調用API函數:
using System.Runtime.InteropServices;
其次,聲明匯入庫和匯入函數,在這裡用一個寫INI檔案的API函數舉例如下:
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section,
string key,string val,string filePath);
要調用SetUnhandledExceptionFilter,問題還不僅僅是調API那麼簡單,還牽涉到怎麼把一個C#函數做為函數指標傳遞給API函數,C#的標準方法是使用代理來作為函數指標,例如代理可以這樣聲明:
public delegate bool EnumThreadWindowsCallback(IntPtr hWnd, IntPtr lParam) ;
我通過做實驗寫了一個C#小程式,粗略的實現了一個全域異常截獲程式,程式還有一些問題,不夠完善,程式中是用rtlmovememory函數來人為的製造了一個全域異常,最後一個參數選200就是為了輸入一個非法參數,在我的電腦上正好可以引發異常,如果在您的電腦上無法引發異常,可以調整這個參數試試。
全部代碼如下:
form1.cs
---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace SetUnhandledExceptionFilter
{
public partial class Form1 : Form
{
public delegate Int32 CallBack(ref long a);
CallBack mycall;
[DllImport("kernel32")]
private static extern void RtlMoveMemory(ref byte dst,
ref byte src, Int32 len);
[DllImport("kernel32")]
private static extern Int32 SetUnhandledExceptionFilter(CallBack cb);
public static Int32 newexceptionfilter(ref long a)
{
MessageBox.Show("截獲了全域異常!");
return 0;
}
public Form1()
{
InitializeComponent();
mycall = new CallBack(newexceptionfilter);
SetUnhandledExceptionFilter(mycall);
}
private void button1_Click(object sender, EventArgs e)
{
byte a=1, b=2;
MessageBox.Show("a=" + a.ToString());
RtlMoveMemory(ref a, ref b, 200);
MessageBox.Show ("a=" + a.ToString());
}
}
}
---------------------------------------------------------------------