//--------------------------------------------------------------------------- #ifndef IRQMSMPcH #define IRQMSMPcH //--------------------------------------------------------------------------- #include #include #include #include #include //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TBevel *Bevel2; TLabel *Label1; TLabel *CountLabel; TBevel *Bevel1; TLabel *StatusLabel; TLabel *Label6; TLabel *Label7; TBevel *Bevel3; TBevel *Bevel4; TLabel *Label3; TLabel *Label8; TBevel *Bevel5; TLabel *Label9; TButton *InitButton; TEdit *IRQEdit; TGroupBox *GroupBox1; TLabel *Label4; TLabel *Label5; TComboBox *BusTypeCombo; TEdit *BusNumberEdit; TEdit *BaseEdit; TEdit *LatchEdit; TEdit *OffsetEdit; TEdit *ValueEdit; TButton *WriteButton; TMemo *Memo1; TButton *ExitButton; TRadioButton *WriteRadio; TRadioButton *ReadRadio; TButton *ReadButton; TBevel *Bevel6; TCheckBox *CheckBox1; TCheckBox *CheckBox2; TCheckBox *CheckBox3; TCheckBox *CheckBox4; TCheckBox *CheckBox5; TCheckBox *CheckBox6; TCheckBox *CheckBox7; TCheckBox *CheckBox8; TCheckBox *CheckBox9; TCheckBox *CheckBox10; TCheckBox *CheckBox11; TCheckBox *CheckBox12; TCheckBox *CheckBox13; TCheckBox *CheckBox14; TCheckBox *CheckBox15; TBevel *Bevel7; TLabel *LastIRQLabel; void __fastcall InitButtonClick(TObject *Sender); void __fastcall WriteButtonClick(TObject *Sender); void __fastcall ExitButtonClick(TObject *Sender); void __fastcall ReadButtonClick(TObject *Sender); void __fastcall IRQCheckBoxClick(TObject *Sender); void __fastcall FormCreate(TObject *Sender); private: // User declarations public: // User declarations unsigned long IRQ_Count; __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif