c# 如何調用非託管函數3-實現回呼函數

來源:互聯網
上載者:User

標籤:

部分dll函數是需要回調的,因此我們在Managed 程式碼中調用的時候,必須先建立回呼函數,然後將該函數的指標作為參數傳遞給dll函數。

以下以EnumWindows函數為例,示範了使用回呼函數的方法:

一 找到函數簽名

EnumWindows具有以下籤名: BOOL EnumWindows(WNDENUMPROC lpEnumFunc,LPARAM lParam);

其中 lpEnumFunc 就是應用程式定義的回呼函數的指標:BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam);

二 建立託管回呼函數

可以用委託類型來定義回呼函數,如:public delegate bool CallBack(int hwnd, int lParam);

三 建立一個委託,並將其作為參數傳遞給 EnumWindows 函數

平台叫用會自動將委託轉換為常見的回調格式。如:

C#-Code:
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("Window handle is ");         Console.WriteLine(hwnd);         return true;     } }

c# 如何調用非託管函數3-實現回呼函數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.