////////////////////////////////////////////////////////////////////// // // HAL_VideoProbe.cpp : interface for the Video Probe related functions // ////////////////////////////////////////////////////////////////////// #include "StdAfx.h" #include "HAL.h" #include "HSI.h" #include "HAL_Pendant.h" extern CHALMicroVuExt g_HSIExt; HAL_STATUS HAL_VP_GetActiveProbe(int &/*nProbe*/) { HAL_STATUS Status = HAL_STATUS_NORMAL; return Status; } HAL_STATUS HAL_VP_SetActiveProbe(int nProbe) { HAL_STATUS Status = HAL_STATUS_NORMAL; switch(nProbe) { case -1: break; default: g_HSIExt.m_ActiveProbe = APT_VISION; SetupPendantSpeeds(); break; } return Status; }