ffdebug.h.svn-base

来自「ffshow源码」· SVN-BASE 代码 · 共 28 行

SVN-BASE
28
字号
#ifndef _FFDEBUG_H_#define _FFDEBUG_H_#include <stdarg.h>#include "char_t.h"#ifndef FFDEBUG#define FFDEBUG 1#endif#if FFDEBUG!=0extern "C" void DPRINTF(const char_t *fmt,...);extern "C" void DPRINTFva(const char_t *fmt,va_list valist);extern "C" void DPRINTFA(const char *fmt,...);extern "C" void DPRINTFvaA(const char *fmt,va_list valist);extern "C" void DPRINTFW(const wchar_t *fmt,...);extern "C" void DPRINTFvaW(const wchar_t *fmt,va_list valist);#elsestatic __inline void DPRINTF(const char_t *fmt,...) {}static __inline void DPRINTFva(const char_t *fmt,va_list valist) {}static __inline void DPRINTFA(const char *fmt,...) {}static __inline void DPRINTFvaA(const char *fmt,va_list valist) {}static __inline void DPRINTFW(const wchar_t *fmt,...) {}static __inline void DPRINTFvaW(const wchar_t *fmt,va_list valist) {}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?