misc/libphysfs/lzma/CPP/Common/MyException.h
author Wuzzy <almikes@aol.com>
Sat, 23 Sep 2017 09:35:45 +0200
changeset 12507 f4b0e164a0d5
parent 12218 bb5522e88ab2
permissions -rw-r--r--
Chance that clicking the random hats button produces a set of equal hats

// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

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

#endif