//--------------------------------------------------------------------------- #ifndef IRQSAMPcH #define IRQSAMPcH //--------------------------------------------------------------------------- #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; TButton *StartButton; 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; TButton *AbortButton; void __fastcall InitButtonClick(TObject *Sender); void __fastcall WriteButtonClick(TObject *Sender); void __fastcall ExitButtonClick(TObject *Sender); void __fastcall StartButtonClick(TObject *Sender); void __fastcall ReadButtonClick(TObject *Sender); void __fastcall AbortButtonClick(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