misc/libphysfs/lzma/CPP/Common/MyException.h
author Wuzzy <almikes@aol.com>
Wed, 26 Apr 2017 19:00:32 +0200
changeset 12341 c73521104fac
parent 12213 bb5522e88ab2
permissions -rw-r--r--
Mutant: Fix “Boring” taunt being played when becoming the mutant

// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

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

#endif