RecvStream.h
上传用户:may_ontech
上传日期:2007-01-08
资源大小:308k
文件大小:1k
源码类别:

图形图象

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef RecvStreamH
  3. #define RecvStreamH
  4. //---------------------------------------------------------------------------
  5. #include <vcl.h>
  6. #include <Classes.hpp>
  7. //---------------------------------------------------------------------------
  8. class TRecvStreamThread : public TThread
  9. {
  10. private:
  11. protected:
  12.         void __fastcall Execute();
  13. public:
  14.         __fastcall TRecvStreamThread(bool CreateSuspended);
  15.         bool __fastcall LoadImage(TImage *Image1);
  16.         TImage *RemoteScreen;  // 显示图象的对象指针
  17.         TStatusBar *StatusBar;  // 显示状态信息的对象指针
  18.         AnsiString RemoteAddress;  // 远程主机IP
  19.         int CL, CQ;  // 色深和图象品质
  20. };
  21. //---------------------------------------------------------------------------
  22. #endif