123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- #ifndef _MV_ERROR_DEFINE_H_
- #define _MV_ERROR_DEFINE_H_
- #include "MvISPErrorDefine.h"
- #define MV_OK 0x00000000
- #define MV_E_HANDLE 0x80000000
- #define MV_E_SUPPORT 0x80000001
- #define MV_E_BUFOVER 0x80000002
- #define MV_E_CALLORDER 0x80000003
- #define MV_E_PARAMETER 0x80000004
- #define MV_E_RESOURCE 0x80000006
- #define MV_E_NODATA 0x80000007
- #define MV_E_PRECONDITION 0x80000008
- #define MV_E_VERSION 0x80000009
- #define MV_E_NOENOUGH_BUF 0x8000000A
- #define MV_E_ABNORMAL_IMAGE 0x8000000B
- #define MV_E_LOAD_LIBRARY 0x8000000C
- #define MV_E_NOOUTBUF 0x8000000D
- #define MV_E_ENCRYPT 0x8000000E
- #define MV_E_UNKNOW 0x800000FF
- #define MV_E_GC_GENERIC 0x80000100
- #define MV_E_GC_ARGUMENT 0x80000101
- #define MV_E_GC_RANGE 0x80000102
- #define MV_E_GC_PROPERTY 0x80000103
- #define MV_E_GC_RUNTIME 0x80000104
- #define MV_E_GC_LOGICAL 0x80000105
- #define MV_E_GC_ACCESS 0x80000106
- #define MV_E_GC_TIMEOUT 0x80000107
- #define MV_E_GC_DYNAMICCAST 0x80000108
- #define MV_E_GC_UNKNOW 0x800001FF
- #define MV_E_NOT_IMPLEMENTED 0x80000200
- #define MV_E_INVALID_ADDRESS 0x80000201
- #define MV_E_WRITE_PROTECT 0x80000202
- #define MV_E_ACCESS_DENIED 0x80000203
- #define MV_E_BUSY 0x80000204
- #define MV_E_PACKET 0x80000205
- #define MV_E_NETER 0x80000206
- #define MV_E_IP_CONFLICT 0x80000221
- #define MV_E_USB_READ 0x80000300
- #define MV_E_USB_WRITE 0x80000301
- #define MV_E_USB_DEVICE 0x80000302
- #define MV_E_USB_GENICAM 0x80000303
- #define MV_E_USB_BANDWIDTH 0x80000304
- #define MV_E_USB_DRIVER 0x80000305
- #define MV_E_USB_UNKNOW 0x800003FF
- #define MV_E_UPG_FILE_MISMATCH 0x80000400
- #define MV_E_UPG_LANGUSGE_MISMATCH 0x80000401
- #define MV_E_UPG_CONFLICT 0x80000402
- #define MV_E_UPG_INNER_ERR 0x80000403
- #define MV_E_UPG_UNKNOW 0x800004FF
- #endif
|