MainUnit.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:
Delphi/CppBuilder
开发平台:
C++ Builder
- //---------------------------------------------------------------------------
- #ifndef MainUnitH
- #define MainUnitH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- //---------------------------------------------------------------------------
- class TMainForm : public TForm
- {
- __published: // IDE-managed Components
- TGroupBox *GroupBox1;
- TButton *MpgPlay;
- TButton *WavPlay;
- TButton *MidiPlay;
- TButton *CDPlay;
- void __fastcall MpgPlayClick(TObject *Sender);
- void __fastcall WavPlayClick(TObject *Sender);
- void __fastcall MidiPlayClick(TObject *Sender);
- void __fastcall CDPlayClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TMainForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TMainForm *MainForm;
- //---------------------------------------------------------------------------
- #endif