14 lines
151 B
C++
14 lines
151 B
C++
#pragma once
|
|
|
|
// Various helper functions
|
|
|
|
using namespace std;
|
|
|
|
inline void ThrowIfFailed(HRESULT hr)
|
|
{
|
|
if (FAILED(hr))
|
|
{
|
|
throw exception();
|
|
}
|
|
}
|