2012年8月14日 星期二

GetLastError() 用法


char* lpMsgBuf;
FormatMessage(
        FORMAT_MESSAGE_ALLOCATE_BUFFER   |   FORMAT_MESSAGE_FROM_SYSTEM,
        NULL,
        GetLastError(),
        MAKELANGID(LANG_NEUTRAL,   SUBLANG_DEFAULT),   //   Default   language
        (LPTSTR)   &lpMsgBuf,
        0,
        NULL
        );
MessageBox((LPCTSTR)lpMsgBuf,L"Error ",MB_OK|MB_ICONINFORMATION   );

沒有留言:

張貼留言