clooneljump/lib/physfs-2.0.3/lzma/CPP/Common/MyException.h

15 lines
227 B
C
Raw Normal View History

2014-02-12 22:59:58 +00:00
// Common/Exception.h
#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H
#include "MyWindows.h"
struct CSystemException
{
HRESULT ErrorCode;
CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
};
#endif