Unit1.h
Upload User: lhxd_sz
Upload Date: 2014-10-02
Package Size: 38814k
Code Size: 1k
Development Platform:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published: // IDE-managed Components
  13. private: // User declarations
  14. public: // User declarations
  15.         __fastcall TForm1(TComponent* Owner);
  16.         void virtual __fastcall MyKey(TMessage& Msg);
  17. BEGIN_MESSAGE_MAP
  18.   MESSAGE_HANDLER(WM_MOVE,TMessage,MyKey)
  19. END_MESSAGE_MAP(TForm)
  20. };
  21. //---------------------------------------------------------------------------
  22. extern PACKAGE TForm1 *Form1;
  23. //---------------------------------------------------------------------------
  24. #endif