misc/libphysfs/lzma/CPP/Common/MyException.h
author Wuzzy <Wuzzy2@mail.ru>
Thu, 08 Mar 2018 21:03:25 +0100
changeset 13127 a7b67247784d
parent 12213 bb5522e88ab2
permissions -rw-r--r--
HedgeEditor: Show waypoint preview

// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

struct CSystemException
{
  HRESULT ErrorCode;
  CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
};

#endif