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.
15 lines
277 B
15 lines
277 B
#ifndef __RAWERROR_H_INCLUDED
|
|
#define __RAWERROR_H_INCLUDED
|
|
|
|
#include <windows.h>
|
|
|
|
struct CRawError
|
|
{
|
|
HRESULT hr;
|
|
LPCTSTR pszName;
|
|
};
|
|
|
|
extern const CRawError g_ErrorMessages[];
|
|
extern const int g_ErrorMessageCount;
|
|
|
|
#endif // __RAWERROR_H_INCLUDED
|