码迷,mamicode.com
首页 > 编程语言 > 详细

c++11 using关键字代替typedef定义函数指针

时间:2019-04-07 20:33:16      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:adl   type   lib   test   null   apt   code   def   hwnd   

#include <windows.h>

typedef int(__stdcall *pMessageBoxA)(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType);
using pFnMessageBoxA = int(__stdcall *)(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType);

int main()
{
    pMessageBoxA MessageBoxA1 = (pMessageBoxA)GetProcAddress(LoadLibraryA("User32.dll"), "MessageBoxA");
    pFnMessageBoxA MessageBoxA2 = (pFnMessageBoxA)GetProcAddress(LoadLibraryA("User32.dll"), "MessageBoxA");

    MessageBoxA1(NULL, "test1", "test", 0);
    MessageBoxA2(NULL, "test2", "test", 0);
    return 0;
}

c++11 using关键字代替typedef定义函数指针

标签:adl   type   lib   test   null   apt   code   def   hwnd   

原文地址:https://www.cnblogs.com/Lnju/p/10666794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!