debugtools.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. #ifndef __WINE_DEBUGTOOLS_H
  2. #define __WINE_DEBUGTOOLS_H
  3. #ifdef __WINE__  /* Debugging interface is internal to Wine */
  4. #include <stdarg.h>
  5. #include "config.h"
  6. #include "windef.h"
  7. struct _GUID;
  8. /* Internal definitions (do not use these directly) */
  9. enum __DEBUG_CLASS { __DBCL_FIXME, __DBCL_ERR, __DBCL_WARN, __DBCL_TRACE, __DBCL_COUNT };
  10. #ifndef NO_TRACE_MSGS
  11. # define __GET_DEBUGGING_trace(dbch) ((dbch)[0] & (1 << __DBCL_TRACE))
  12. #else
  13. # define __GET_DEBUGGING_trace(dbch) 0
  14. #endif
  15. #ifndef NO_DEBUG_MSGS
  16. # define __GET_DEBUGGING_warn(dbch)  ((dbch)[0] & (1 << __DBCL_WARN))
  17. # define __GET_DEBUGGING_fixme(dbch) ((dbch)[0] & (1 << __DBCL_FIXME))
  18. #else
  19. # define __GET_DEBUGGING_warn(dbch)  0
  20. # define __GET_DEBUGGING_fixme(dbch) 0
  21. #endif
  22. /* define error macro regardless of what is configured */
  23. #define __GET_DEBUGGING_err(dbch)  ((dbch)[0] & (1 << __DBCL_ERR))
  24. #define __GET_DEBUGGING(dbcl,dbch)  __GET_DEBUGGING_##dbcl(dbch)
  25. #define __SET_DEBUGGING(dbcl,dbch,on) 
  26.     ((on) ? ((dbch)[0] |= 1 << (dbcl)) : ((dbch)[0] &= ~(1 << (dbcl))))
  27. #ifndef __GNUC__
  28. #define __FUNCTION__ ""
  29. #endif
  30. #define __DPRINTF(dbcl,dbch) 
  31.   (!__GET_DEBUGGING(dbcl,(dbch)) || (dbg_header_##dbcl((dbch),__FUNCTION__),0)) ? 
  32.      (void)0 : (void)dbg_printf
  33. /* Exported definitions and macros */
  34. /* These function return a printable version of a string, including
  35.    quotes.  The string will be valid for some time, but not indefinitely
  36.    as strings are re-used.  */
  37. extern LPCSTR debugstr_an (LPCSTR s, int n);
  38. extern LPCSTR debugstr_wn (LPCWSTR s, int n);
  39. extern LPCSTR debugres_a (LPCSTR res);
  40. extern LPCSTR debugres_w (LPCWSTR res);
  41. extern LPCSTR debugstr_guid( const struct _GUID *id );
  42. extern LPCSTR debugstr_hex_dump (const void *ptr, int len);
  43. extern int dbg_header_err( const char *dbg_channel, const char *func );
  44. extern int dbg_header_warn( const char *dbg_channel, const char *func );
  45. extern int dbg_header_fixme( const char *dbg_channel, const char *func );
  46. extern int dbg_header_trace( const char *dbg_channel, const char *func );
  47. extern int dbg_vprintf( const char *format, va_list args );
  48. static inline LPCSTR debugstr_a( LPCSTR s )  { return debugstr_an( s, 80 ); }
  49. static inline LPCSTR debugstr_w( LPCWSTR s ) { return debugstr_wn( s, 80 ); }
  50. #ifdef __GNUC__
  51. extern int dbg_printf(const char *format, ...) __attribute__((format (printf,1,2)));
  52. #else
  53. extern int dbg_printf(const char *format, ...);
  54. #endif
  55. #define TRACE_(X) TRACE
  56. #define WARN_(X) TRACE
  57. #define WARN TRACE
  58. #define ERR_(X) printf
  59. #define ERR printf
  60. #define FIXME_(X) TRACE
  61. #define FIXME TRACE
  62. #define TRACE_ON(X) 1
  63. #define ERR_ON(X) 1
  64. #define DECLARE_DEBUG_CHANNEL(ch) 
  65.     extern char dbch_##ch[];
  66. #define DEFAULT_DEBUG_CHANNEL(ch) 
  67.     extern char dbch_##ch[]; static char * const __dbch_default = dbch_##ch;
  68. #define DPRINTF dbg_printf
  69. #define MESSAGE dbg_printf
  70. #endif  /* __WINE__ */
  71. #endif  /* __WINE_DEBUGTOOLS_H */