12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * File: IRayEventDef_MAM.h
- *
- * Purpose: IRay FPD callback event definition
- *
- *
- * @author Haitao.Ning
- * @version 1.0 2015/4/23
- *
- * Copyright (C) 2009, 2015, iRay Technology (Shanghai) Ltd.
- *
- */
- #ifndef _IRAY_EVENT_DEF_H_
- #define _IRAY_EVENT_DEF_H_
- #define Evt_GeneralError 3 // General Error
- #define Evt_TaskResult_Succeed 4 // Task succeed
- #define Evt_TaskResult_Failed 5 // Task failed
- #define Evt_TaskResult_Canceled 6 // Task been canceled
- #define Evt_AutoTask_Started 7 // Task is started which is not emitted by user command, outer or AED image acquiring will trigger this event.
- #define Evt_ScanOnce_Request 8 // Request scanner to start a broadcast scanning
- #define Evt_HwCaliTemplateList 12 // Return hardware calibration template list
- #define Evt_TransactionAborted 17 // Notify that current transaction was aborted
- #define Evt_Image 1001 // Image received
- #define Evt_Prev_Image 1002 // Preview image received
- #define Evt_Retransfer_Image 1012 // Retransfered image received after break and re-connecting
- #define Evt_WaitImage_Timeout 1003 // Acqusition operation time out(equal: Possiable Image Loss)
- #define Evt_Exp_Prohibit 1004 // Exposure prohibit
- #define Evt_Exp_Enable 1005 // Exposure enable
- #define Evt_CustomROM 1014 // Return the customized data while invoking Cmd_ReadCustomROM
- #define Evt_ConnectProcess 2001 // Report Process info while connecting
- #define Evt_TemperatureHigh 2003 // Temperature too high
- #define Evt_FpsOutOfRange 2004 // Fps too high or too low
- #define Evt_TemplateOverDue 2006 // Calibration template file over due
- #define Evt_Exp_Window_Info 3001 // Return exposure window
- #define Evt_App_Mode_Info 3002 // Return Application mode
- #define Evt_Mammo_Flow_End 3003 // Return mammo flow end
- #define Evt_AED_Start 3004 // Return AED information
- #endif
|