Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-11 10:26:10

0001 //========================================================================
0002 //
0003 // SplashErrorCodes.h
0004 //
0005 //========================================================================
0006 
0007 //========================================================================
0008 //
0009 // Modified under the Poppler project - http://poppler.freedesktop.org
0010 //
0011 // All changes made under the Poppler project to this file are licensed
0012 // under GPL version 2 or later
0013 //
0014 // Copyright (C) 2006, 2009 Albert Astals Cid <aacid@kde.org>
0015 //
0016 // To see a description of the changes please see the Changelog file that
0017 // came with your tarball or type make ChangeLog if you are building from git
0018 //
0019 //========================================================================
0020 
0021 #ifndef SPLASHERRORCODES_H
0022 #define SPLASHERRORCODES_H
0023 
0024 //------------------------------------------------------------------------
0025 
0026 #define splashOk 0 // no error
0027 
0028 #define splashErrNoCurPt 1 // no current point
0029 
0030 #define splashErrEmptyPath 2 // zero points in path
0031 
0032 #define splashErrBogusPath 3 // only one point in subpath
0033 
0034 #define splashErrNoSave 4 // state stack is empty
0035 
0036 #define splashErrOpenFile 5 // couldn't open file
0037 
0038 #define splashErrNoGlyph 6 // couldn't get the requested glyph
0039 
0040 #define splashErrModeMismatch 7 // invalid combination of color modes
0041 
0042 #define splashErrSingularMatrix 8 // matrix is singular
0043 
0044 #define splashErrBadArg 9 // bad argument
0045 
0046 #define splashErrZeroImage 254 // image of 0x0
0047 
0048 #define splashErrGeneric 255
0049 
0050 #endif