Unit1.h
上传用户:gyjjlc
上传日期:2013-03-29
资源大小:2124k
文件大小:1k
源码类别:

多显示器编程

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include "Unit2.h"
  6. #include "Unit3.h"
  7. #include <Classes.hpp>
  8. #include <Controls.hpp>
  9. #include <StdCtrls.hpp>
  10. #include <Forms.hpp>
  11. #include <Syncobjs.hpp>
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published: // IDE-managed Components
  16.     TMemo *Memo1;
  17.     TButton *Button1;
  18.     void __fastcall FormCreate(TObject *Sender);
  19.     void __fastcall Button1Click(TObject *Sender);
  20. private: // User declarations
  21.     TReverseThread *ReverseThread;
  22.     TDisplayThread *DisplayThread;
  23. public: // User declarations
  24.     char LetterTable[26];
  25.     TEvent * pEvent;
  26.     __fastcall TForm1(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TForm1 *Form1;
  30. //---------------------------------------------------------------------------
  31. #endif