Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
1.1 KiB

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: schemainitutils: Helpful macros when initing stuff that you'll
// want to record multiple errors from
//
//=============================================================================
#ifndef SCHEMAINITUTILS_H
#define SCHEMAINITUTILS_H
#ifdef _WIN32
#pragma once
#endif
// used for initialization functions. Adds an error message if we're recording
// them or returns false if we're not
#define SCHEMA_INIT_CHECK( expr, ... ) \
if ( false == ( expr ) ) \
{ \
CUtlString msg; \
msg.Format( __VA_ARGS__ ); \
if ( NULL == ( pVecErrors ) ) \
{ \
AssertMsg( expr, "%s", msg.String() ); \
} \
else \
{ \
pVecErrors->AddToTail( msg ); \
} \
return false; \
}
#define SCHEMA_INIT_SUCCESS( ) \
( NULL == pVecErrors ) || ( 0 == pVecErrors->Count() )
#define SCHEMA_INIT_SUBSTEP( expr ) \
if ( !( expr ) ) \
return false;
#endif // SCHEMAINITUTILS_H