misc/libphysfs/lzma/CPP/Common/MyException.h
author sheepluva
Sat, 30 Sep 2017 19:51:22 +0200
changeset 12623 2d68c113fc8d
parent 12218 bb5522e88ab2
permissions -rw-r--r--
fix copypasta fail that caused segfaults (esp. in pas2c)

// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

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

#endif