mame/3rdparty/lzma/CPP/Common/MyException.h
2023-12-06 07:58:49 +11:00

15 lines
241 B
C

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