ReactOS 0.4.15-dev-7788-g1ad9096
ftdebug.h File Reference
#include <ft2build.h>
Include dependency graph for ftdebug.h:

Go to the source code of this file.

Macros

#define FT_TRACE(level, varformat)   do { } while ( 0 ) /* nothing */
 
#define FT_TRACE0(varformat)   FT_TRACE( 0, varformat )
 
#define FT_TRACE1(varformat)   FT_TRACE( 1, varformat )
 
#define FT_TRACE2(varformat)   FT_TRACE( 2, varformat )
 
#define FT_TRACE3(varformat)   FT_TRACE( 3, varformat )
 
#define FT_TRACE4(varformat)   FT_TRACE( 4, varformat )
 
#define FT_TRACE5(varformat)   FT_TRACE( 5, varformat )
 
#define FT_TRACE6(varformat)   FT_TRACE( 6, varformat )
 
#define FT_TRACE7(varformat)   FT_TRACE( 7, varformat )
 
#define FT_ERROR(varformat)   do { } while ( 0 ) /* nothing */
 
#define FT_ASSERT(condition)   do { } while ( 0 )
 
#define FT_THROW(e)   FT_ERR_CAT( FT_ERR_PREFIX, e )
 

Functions

 FT_Trace_Get_Count (void)
 
 FT_Trace_Get_Name (FT_Int idx)
 
 ft_debug_init (void)
 

Macro Definition Documentation

◆ FT_ASSERT

#define FT_ASSERT (   condition)    do { } while ( 0 )

Definition at line 211 of file ftdebug.h.

◆ FT_ERROR

#define FT_ERROR (   varformat)    do { } while ( 0 ) /* nothing */

Definition at line 181 of file ftdebug.h.

◆ FT_THROW

#define FT_THROW (   e)    FT_ERR_CAT( FT_ERR_PREFIX, e )

Definition at line 213 of file ftdebug.h.

◆ FT_TRACE

#define FT_TRACE (   level,
  varformat 
)    do { } while ( 0 ) /* nothing */

Definition at line 95 of file ftdebug.h.

◆ FT_TRACE0

#define FT_TRACE0 (   varformat)    FT_TRACE( 0, varformat )

Definition at line 157 of file ftdebug.h.

◆ FT_TRACE1

#define FT_TRACE1 (   varformat)    FT_TRACE( 1, varformat )

Definition at line 158 of file ftdebug.h.

◆ FT_TRACE2

#define FT_TRACE2 (   varformat)    FT_TRACE( 2, varformat )

Definition at line 159 of file ftdebug.h.

◆ FT_TRACE3

#define FT_TRACE3 (   varformat)    FT_TRACE( 3, varformat )

Definition at line 160 of file ftdebug.h.

◆ FT_TRACE4

#define FT_TRACE4 (   varformat)    FT_TRACE( 4, varformat )

Definition at line 161 of file ftdebug.h.

◆ FT_TRACE5

#define FT_TRACE5 (   varformat)    FT_TRACE( 5, varformat )

Definition at line 162 of file ftdebug.h.

◆ FT_TRACE6

#define FT_TRACE6 (   varformat)    FT_TRACE( 6, varformat )

Definition at line 163 of file ftdebug.h.

◆ FT_TRACE7

#define FT_TRACE7 (   varformat)    FT_TRACE( 7, varformat )

Definition at line 164 of file ftdebug.h.

Function Documentation

◆ ft_debug_init()

ft_debug_init ( void  )

Definition at line 241 of file ftdebug.c.

242 {
243 /* nothing */
244 }

Referenced by FT_New_Library().

◆ FT_Trace_Get_Count()

FT_Trace_Get_Count ( void  )

Definition at line 248 of file ftdebug.c.

249 {
250 return 0;
251 }

◆ FT_Trace_Get_Name()

FT_Trace_Get_Name ( FT_Int  idx)

Definition at line 255 of file ftdebug.c.

256 {
257 FT_UNUSED( idx );
258
259 return NULL;
260 }
#define NULL
Definition: types.h:112
unsigned int idx
Definition: utils.c:41
#define FT_UNUSED(arg)
Definition: ftconfig.h:101