MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / Win32Call

Function Win32Call

SampleFramework12/v1.00/Exceptions.h:294–298  ·  view source on GitHub ↗

Throws a Win32Exception on failing return value

Source from the content-addressed store, hash-verified

292
293// Throws a Win32Exception on failing return value
294inline void Win32Call(BOOL retVal)
295{
296 if(retVal == 0)
297 throw Win32Exception(GetLastError());
298}
299
300// Throws a GdiPlusException on failing Status value
301inline void GdiPlusCall(Gdiplus::Status status)

Callers 12

TimerMethod · 0.85
UpdateMethod · 0.85
AnsiToWStringFunction · 0.85
WStringToAnsiFunction · 0.85
GetFileTimestampFunction · 0.85
OpenMethod · 0.85
CloseMethod · 0.85
ReadMethod · 0.85
WriteMethod · 0.85
SizeMethod · 0.85
CompileShaderFunction · 0.85
InitMethod · 0.85

Calls 1

Win32ExceptionClass · 0.85

Tested by

no test coverage detected