⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 error.h

📁 flash swf file player
💻 H
字号:
/* error.h * * $Id: error.h,v 1.6 2003/11/08 18:24:57 whamann Exp $ *  * Notice: This header file contains declarations of functions and types that * are just used internally. All library functions and types that are supposed * to be publicly accessable are defined in ./src/ming.h. */#ifndef SWF_ERROR_H_INCLUDED#define SWF_ERROR_H_INCLUDED#include "ming.h"/* XXX - error calls should be macros to save the file/lineno */extern void (*SWF_warn)(const char *msg, ...);extern void (*SWF_error)(const char *msg, ...);void warn_default(const char *msg, ...);void error_default(const char *msg, ...);void setSWFWarnFunction(void (*error)(const char *msg, ...));void setSWFErrorFunction(void (*error)(const char *msg, ...));void SWF_assert(int c);#endif /* SWF_ERROR_H_INCLUDED */

⌨️ 快捷键说明

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