|
SMI RED eye tracking plugin 1.0
|
00001 //################################################################################### 00002 //# SCOL Plugin : SMI RED eye tracking Control # 00003 //# Author : # 00004 //# Aymeric SUTEAU # 00005 //# LISA - ANGERS # 00006 //################################################################################### 00007 00015 // Include Scol Library 00016 #include <scol.h> 00017 00018 // Include Header File 00019 #include "EyeTracking.h" 00020 00021 // Extern variables declaration 00022 extern cbmachine ww; // Scol machine declaration 00023 extern HWND HScol; // Scol window Handle 00024 extern int OBJSMISCOL; // SMI RED Eye tracking system object 00025 00026 // Fusion callbacks 00027 extern int SCOL_SMI_CONNECTED_CB; 00028 extern int SMI_CONNECTED_CB; 00029 00030 extern int SCOL_SMI_DISCONNECTED_CB; 00031 extern int SMI_DISCONNECTED_CB; 00032 00033 extern int SCOL_SMI_CALIBRATION_DONE_CB; 00034 extern int SMI_CALIBRATION_DONE_CB; 00035 00036 extern int SCOL_SMI_NEW_FIXATION_CB; 00037 extern int SMI_NEW_FIXATION_CB; 00038 00039 extern int SCOL_SMI_NEW_SAMPLE_CB; 00040 extern int SMI_NEW_SAMPLE_CB;
1.7.3