1 | /* $Id: cderr.h,v 1.1 1999-05-24 20:19:09 ktk Exp $ */
|
---|
2 |
|
---|
3 | #ifndef __WINE_CDERR_H
|
---|
4 | #define __WINE_CDERR_H
|
---|
5 |
|
---|
6 | /* General error codes */
|
---|
7 | #define CDERR_DIALOGFAILURE 0xFFFF
|
---|
8 | #define CDERR_GENERALCODES 0x0000
|
---|
9 | #define CDERR_STRUCTSIZE 0x0001
|
---|
10 | #define CDERR_INITIALIZATION 0x0002
|
---|
11 | #define CDERR_NOTEMPLATE 0x0003
|
---|
12 | #define CDERR_NOHINSTANCE 0x0004
|
---|
13 | #define CDERR_LOADSTRFAILURE 0x0005
|
---|
14 | #define CDERR_FINDRESFAILURE 0x0006
|
---|
15 | #define CDERR_LOADRESFAILURE 0x0007
|
---|
16 | #define CDERR_LOCKRESFAILURE 0x0008
|
---|
17 | #define CDERR_MEMALLOCFAILURE 0x0009
|
---|
18 | #define CDERR_MEMLOCKFAILURE 0x000A
|
---|
19 | #define CDERR_NOHOOK 0x000B
|
---|
20 | #define CDERR_REGISTERMSGFAIL 0x000C
|
---|
21 |
|
---|
22 | /* Printer dialog error codes */
|
---|
23 | #define PDERR_PRINTERCODES 0x1000
|
---|
24 | #define PDERR_SETUPFAILURE 0x1001
|
---|
25 | #define PDERR_PARSEFAILURE 0x1002
|
---|
26 | #define PDERR_RETDEFFAILURE 0x1003
|
---|
27 | #define PDERR_LOADDRVFAILURE 0x1004
|
---|
28 | #define PDERR_GETDEVMODEFAIL 0x1005
|
---|
29 | #define PDERR_INITFAILURE 0x1006
|
---|
30 | #define PDERR_NODEVICES 0x1007
|
---|
31 | #define PDERR_NODEFAULTPRN 0x1008
|
---|
32 | #define PDERR_DNDMMISMATCH 0x1009
|
---|
33 | #define PDERR_CREATEICFAILURE 0x100A
|
---|
34 | #define PDERR_PRINTERNOTFOUND 0x100B
|
---|
35 | #define PDERR_DEFAULTDIFFERENT 0x100C
|
---|
36 |
|
---|
37 | /* Chose font error codes */
|
---|
38 | #define CFERR_CHOOSEFONTCODES 0x2000
|
---|
39 | #define CFERR_NOFONTS 0x2001
|
---|
40 | #define CFERR_MAXLESSTHANMIN 0x2002
|
---|
41 |
|
---|
42 | /* File{Open,Save} error codes */
|
---|
43 | #define FNERR_FILENAMECODES 0x3000
|
---|
44 | #define FNERR_SUBCLASSFAILURE 0x3001
|
---|
45 | #define FNERR_INVALIDFILENAME 0x3002
|
---|
46 | #define FNERR_BUFFERTOOSMALL 0x3003
|
---|
47 |
|
---|
48 | /* Find/Replace error codes */
|
---|
49 | #define FRERR_FINDREPLACECODES 0x4000
|
---|
50 | #define FRERR_BUFFERLENGTHZERO 0x4001
|
---|
51 |
|
---|
52 | /* Choose color error codes */
|
---|
53 | #define CCERR_CHOOSECOLORCODES 0x5000
|
---|
54 |
|
---|
55 | #endif
|
---|