Files
megasource/libs/physfs-2.0.3/lzma/CPP/Common/MyException.h
T
2013-09-25 13:01:20 +02:00

15 lines
227 B
C

// Common/Exception.h
#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H
#include "MyWindows.h"
struct CSystemException
{
HRESULT ErrorCode;
CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
};
#endif