自动销毁的MessageBoxTimeout()函数

来源:互联网 发布:网络电影大全免费爱情 编辑:程序博客网 时间:2024/06/07 07:02
//以下两个函数由user32.dll导出,只是没有微软官方文档记载,大家在cpp中包含了以下部分,就可以调用MessageBoxTimeout了。


extern "C"
{
int WINAPI MessageBoxTimeoutA(IN HWND hWnd, IN LPCSTR lpText, IN LPCSTR lpCaption, IN UINT uType, IN WORD wLanguageId, IN DWORD dwMilliseconds);
int WINAPI MessageBoxTimeoutW(IN HWND hWnd, IN LPCWSTR lpText, IN LPCWSTR lpCaption, IN UINT uType, IN WORD wLanguageId, IN DWORD dwMilliseconds);
};
#ifdef UNICODE
#define MessageBoxTimeout MessageBoxTimeoutW
#else
#define MessageBoxTimeout MessageBoxTimeoutA
#endif
需要指出的是,Windows 2000的user32.dll没有导出这个函数。

 



//举例如下:
    int ret = MessageBoxTimeoutA(NULL, "倒计时?", "tishi", MB_OKCANCEL, 0, 10*1000);
    if( IDOK == ret)
    {
        ::MessageBox(NULL, "IDOK", "结果", MB_OK);
    }
    else if( IDCANCEL == ret)
    {
        ::MessageBox(NULL, "IDCANCEL", "结果", MB_OK);
    }
    else if( IDTIMEOUT == ret)
    {
        ::MessageBox(NULL, "IDTIMEOUT", "结果", MB_OK);
    }  
原创粉丝点击