]> git.ipfire.org Git - thirdparty/cups.git/blob - pdftops/SplashErrorCodes.h
Load cups into easysw/current.
[thirdparty/cups.git] / pdftops / SplashErrorCodes.h
1 //========================================================================
2 //
3 // SplashErrorCodes.h
4 //
5 //========================================================================
6
7 #ifndef SPLASHERRORCODES_H
8 #define SPLASHERRORCODES_H
9
10 #include <config.h>
11
12 //------------------------------------------------------------------------
13
14 #define splashOk 0 // no error
15
16 #define splashErrNoCurPt 1 // no current point
17
18 #define splashErrEmptyPath 2 // zero points in path
19
20 #define splashErrBogusPath 3 // only one point in subpath
21
22 #define splashErrNoSave 4 // state stack is empty
23
24 #define splashErrOpenFile 5 // couldn't open file
25
26 #define splashErrNoGlyph 6 // couldn't get the requested glyph
27
28 #define splashErrModeMismatch 7 // invalid combination of color modes
29
30 #define splashErrSingularMatrix 8 // matrix is singular
31
32 #endif