MainUnit.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

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