mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
241 B
C
15 lines
241 B
C
// Common/Exception.h
|
|
|
|
#ifndef __COMMON_EXCEPTION_H
|
|
#define __COMMON_EXCEPTION_H
|
|
|
|
#include "MyWindows.h"
|
|
|
|
struct CSystemException
|
|
{
|
|
HRESULT ErrorCode;
|
|
CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
|
|
};
|
|
|
|
#endif
|