allwinner_a64/android/external/lzma/CPP/Common/MyException.h
2018-08-08 16:14:42 +08:00

14 lines
241 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