?? rcerrormessage.h
字號:
//////////////////////////////////////////////////////////////////////////////
// //
// Created by Ozzy Osbourne(maojun) . HangZhou . 20030214 //
// //
//////////////////////////////////////////////////////////////////////////////
// CRcErrorMessage is format run time error message.
//
// Expect bugs.
//
// Please use and enjoy. Please let me know of any bugs/mods/improvements
// that you have found/implemented and I will fix/incorporate them into this file.
// Please send report to OzzyJMalmsteen@yahoo.com.cn or Ozzman@163.net
#ifndef _RCERRORMESSAGE_H_
#define _RCERRORMESSAGE_H_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CRcErrorMessage
{
public:
CRcErrorMessage();
virtual ~CRcErrorMessage();
CString GetErrorMessage() { return m_strErrorMessage; }
public:
BOOL FormatErrorMessage(LPCTSTR lpszStep, DWORD dwLastError);
private:
CString m_strErrorMessage;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -