android_mt6572_jiabo/external/p7zip/CPP/Common/MyException.h
2025-09-05 16:56:03 +08:00

14 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