- Continue LibLog migration.

This commit is contained in:
Arnaud G. GIBERT 2024-04-20 21:06:21 +02:00
parent bf2a95a5d2
commit 67e20bbd87
2 changed files with 175 additions and 844 deletions

File diff suppressed because it is too large Load Diff

View File

@ -118,6 +118,14 @@ NDT_Base NDG_Base =
}; };
/*------------------------------------------------------------------------------*/
/* */
/*------------------------------------------------------------------------------*/
#define ND_LIBNODE_OPEN_CHECK() if( NDG_Base.Open_Status != NDD_TRUE) { LG_LOG_ERROR_0( "LibNode library is not opened"); return( NDS_ERRAPI); }
#define ND_NOT_NULL_CHECK( ptr, msg) if( !(ptr)) { LG_LOG_ERROR_1( "%s is null", (msg)); return( NDS_ERRAPI); }