00001 /* 00002 ----------------------------------------------------------------------------- 00003 This source file is part of OpenSpace3D 00004 For the latest info, see http://www.openspace3d.com 00005 00006 Copyright (c) 2010 I-maginer 00007 00008 This program is free software; you can redistribute it and/or modify it under 00009 the terms of the GNU Lesser General Public License as published by the Free Software 00010 Foundation; either version 2 of the License, or (at your option) any later 00011 version. 00012 00013 This program is distributed in the hope that it will be useful, but WITHOUT 00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00015 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public License along with 00018 this program; if not, write to the Free Software Foundation, Inc., 59 Temple 00019 Place - Suite 330, Boston, MA 02111-1307, USA, or go to 00020 http://www.gnu.org/copyleft/lesser.txt 00021 00022 You may alternatively use this source under the terms of a specific version of 00023 the OpenSpace3D Unrestricted License provided you have obtained such a license from 00024 I-maginer. 00025 ----------------------------------------------------------------------------- 00026 */ 00027 00028 00035 #ifndef __PLUGIN_H__ 00036 #define __PLUGIN_H__ 00037 00038 #include "lib/common.h" 00039 00040 extern HWND HScol; 00041 00042 #define SCOL_TYPTYPE(x) (int (__cdecl *)(struct Mmachine *))ITOM(x) 00043 00044 //===== CB Kinect CONNECTED === 00045 extern int SCOL_KINECT_CONNECTED_CB; 00046 extern int KINECT_CONNECTED_CB; 00047 00048 //===== CB Kinect DISCONNECTED === 00049 extern int SCOL_KINECT_DISCONNECTED_CB; 00050 extern int KINECT_DISCONNECTED_CB; 00051 00052 //===== CB Kinect NEW USER === 00053 extern int SCOL_KINECT_NEW_USER_CB; 00054 extern int KINECT_NEW_USER_CB; 00055 00056 //===== CB Kinect LOST USER === 00057 extern int SCOL_KINECT_LOST_USER_CB; 00058 extern int KINECT_LOST_USER_CB; 00059 00060 //===== CB Kinect User Calibration Start === 00061 extern int SCOL_KINECT_USER_CALIBRATION_START_CB; 00062 extern int KINECT_USER_CALIBRATION_START_CB; 00063 00064 //===== CB Kinect User Calibration End === 00065 extern int SCOL_KINECT_USER_CALIBRATION_END_CB; 00066 extern int KINECT_USER_CALIBRATION_END_CB; 00067 00068 //===== CB Kinect User Pose Detected === 00069 extern int SCOL_KINECT_USER_POSE_DETECTED_CB; 00070 extern int KINECT_USER_POSE_DETECTED_CB; 00071 00072 //===== CB Kinect User Pose Lost === 00073 extern int SCOL_KINECT_USER_POSE_LOST_CB; 00074 extern int KINECT_USER_POSE_LOST_CB; 00075 00076 00077 #endif
1.7.2