MainUnit.h
Upload User: lulishicai
Upload Date: 2010-03-01
Package Size: 13202k
Code Size: 1k
Development Platform:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef MainUnitH
  3. #define MainUnitH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TMainForm : public TForm
  11. {
  12. __published: // IDE-managed Components
  13.         TGroupBox *GroupBox1;
  14.         TButton *MpgPlay;
  15.         TButton *WavPlay;
  16.         TButton *MidiPlay;
  17.         TButton *CDPlay;
  18.         void __fastcall MpgPlayClick(TObject *Sender);
  19.         void __fastcall WavPlayClick(TObject *Sender);
  20.         void __fastcall MidiPlayClick(TObject *Sender);
  21.         void __fastcall CDPlayClick(TObject *Sender);
  22. private: // User declarations
  23. public: // User declarations
  24.         __fastcall TMainForm(TComponent* Owner);
  25. };
  26. //---------------------------------------------------------------------------
  27. extern PACKAGE TMainForm *MainForm;
  28. //---------------------------------------------------------------------------
  29. #endif