mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 11:14:58 -06:00
15 lines
241 B
C
Executable File
15 lines
241 B
C
Executable File
// 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
|