2025-11-28 00:35:46 +09:00

15 lines
443 B
C

//------------------------------------------------------------------------------
// File: Util.h
//
// Desc: DirectShow sample code - simple helper macros
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
#ifndef _UTIL_HH__
#define _UTIL_HH__
#define FAIL_RET(x) do { if( FAILED( hr = ( x ) ) ) \
return hr; } while(0)
#endif // _UTIL_HH__