Files
easy7zip/Common/ComTry.h
Igor Pavlov 3c510ba80b 4.20
2016-05-28 00:15:41 +01:00

13 lines
228 B
C++
Executable File

// ComTry.h
#ifndef __COM_TRY_H
#define __COM_TRY_H
#include "Exception.h"
#define COM_TRY_BEGIN try {
#define COM_TRY_END } catch(const CSystemException &e) { return e.ErrorCode; }\
catch(...) { return E_FAIL; }
#endif