-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbtPdfAsmError.h
22 lines (18 loc) · 903 Bytes
/
mbtPdfAsmError.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __MBTPDFASMERROR_H__
#define __MBTPDFASMERROR_H__
#define RETURN_ARGC_LESS_THAN_2 -1
#define ERROR_UNABLE_NO_ERROR 0x0000
#define ERROR_UNABLE_TO_CHANGE_DIR 0x0001
#define ERROR_UNABLE_TO_OPEN_ORG_PDF_FILE 0x0002
#define ERROR_UNABLE_TO_DECRYPT_PDF_FILE 0x0004
#define ERROR_NO_MATCHING_FILE 0x0008
#define ERROR_UNABLE_TO_OPEN_SCRIPT 0x0010
#define ERROR_UNABLE_TO_OPEN_ORG_PDF_FILE_SCRIPT 0x0020
#define ERROR_UNABLE_TO_DECRYPT_PDF_FILE_SCRIPT 0x0040
#define ERROR_UNABLE_TO_FLUSH_OUTLINES 0x0080
#define ERROR_UNABLE_TO_LOAD_OUTLINES 0x0100
#define ERROR_DURING_UPDATE 0x0200
#define ERROR_NO_MATCHING_FILE_UPDATE 0x0400
#define ERROR_DISPLAY_USE 0x0800
#define ERROR_ARGC_LESS_THAN_2 0x1000
#endif