errormsg.h

来自「字体缩放显示」· C头文件 代码 · 共 44 行

H
44
字号
/* *   errormsg.h * *   This file is part of the ttf2pk package. * *   Copyright 1997-1999, 2000 by *     Frederic Loyer <loyer@ensta.fr> *     Werner Lemberg <wl@gnu.org> */#ifndef ERRORMSG_H#define ERRORMSG_H/*   Disable some annoying warnings when you compile with -W3.  Namely the   warnings about missing __cdecl specifiers at some places where they are   not really needed because the compiler can generate them.   This is relevant only if you compile with -Gr option, i.e., use fastcall   calling convention.   This is needed for fpTeX. */#ifdef WIN32#pragma warning (disable : 4007 4096)#endifvoid oops(const char *message,          ...);void boops(const char *buffer,           size_t offset,           const char *message,           ...);void warning(const char *message,             ...);#endif /* ERRORMSG_H *//* end */

⌨️ 快捷键说明

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