C#調用參數為函數指標的API函數 – 以SetUnhandledExceptionFilter為例編寫一個全域例外處理常式

來源:互聯網
上載者:User

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());
           
        }
    }
}
--------------------------------------------------------------------- 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.