//======================================================================== // // Error.h // // Copyright 1996-2003 Glyph & Cog, LLC // //======================================================================== //======================================================================== // // Modified under the Poppler project - http://poppler.freedesktop.org // // All changes made under the Poppler project to this file are licensed // under GPL version 2 or later // // Copyright (C) 2005, 2007 Jeff Muizelaar // Copyright (C) 2005 Albert Astals Cid // Copyright (C) 2005 Kristian Høgsberg // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git // //======================================================================== #ifndef ERROR_H #define ERROR_H #ifdef USE_GCC_PRAGMAS #pragma interface #endif #include #include "poppler-config.h" extern void CDECL error(int pos, char *msg, ...) GCC_PRINTF_FORMAT (2, 3); void warning(char *msg, ...) GCC_PRINTF_FORMAT (1, 2); void setErrorFunction(void (* f)(int , char *, va_list args)); #endif