//--------------------------------------------------------------------------- #ifndef FrmRtspVmsCamFH #define FrmRtspVmsCamFH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include "CDSFacilityF.h" #include #include //--------------------------------------------------------------------------- class TFrmRtspVmsCam : public TForm { __published: // IDE-managed Components TPanel *PnlBack; TTimer *TmrShow; TPanel *PnlBlob; TADOQuery *pADO; TImage *ImgBlob; void __fastcall TmrShowTimer(TObject *Sender); void __fastcall FormShow(TObject *Sender); void __fastcall FormClose(TObject *Sender, TCloseAction &Action); void __fastcall FormDestroy(TObject *Sender); private: // User declarations bool FDispBlob; DWORD FProcessId; HWND FWnd; PROCESS_INFORMATION ProcessInfo; public: // User declarations TItsVms *FObj; TForm *FPalyerForm; void __fastcall CamPlay(); void __fastcall CamStop(); void __fastcall RefreshCctv(); __fastcall TFrmRtspVmsCam(TComponent* Owner); }; //--------------------------------------------------------------------------- //extern PACKAGE TFrmRtspVmsCam *FrmRtspVmsCam; //--------------------------------------------------------------------------- #endif