You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
687 B
38 lines
687 B
/*****************************************************************************
|
|
|
|
Copyright (c) Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ShowError.h
|
|
|
|
Abstract:
|
|
|
|
This module contanins function definations required by ShowError.cpp
|
|
|
|
Author:
|
|
Akhil Gokhale 03-Oct.-2000
|
|
|
|
Revision History:
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
#ifndef SHOWERROR_H
|
|
#define SHOWERROR_H
|
|
class CShowError
|
|
{
|
|
|
|
public:
|
|
LPCTSTR ShowReason();
|
|
CShowError();
|
|
CShowError(LONG lErrorNumber);
|
|
virtual ~CShowError();
|
|
|
|
private:
|
|
LONG m_lErrorNumber;
|
|
public:
|
|
TCHAR m_szErrorMsg[(MAX_RES_STRING*2)+1];
|
|
};
|
|
|
|
#endif
|