//--------------------------------------------------------------------------- #ifndef ScanUnitH #define ScanUnitH //--------------------------------------------------------------------------- #include #include #include #include #include //--------------------------------------------------------------------------- class TScanForm : public TForm { __published: // IDE-managed Components TLabel *IntroLabel; TLabel *Address8Label; TLabel *Address16Label; TLabel *StatusLabel; TButton *StartButton; TButton *ExitButton; TEdit *Address8Edit; TEdit *Address16Edit; TListBox *OutMemo; void __fastcall FormCreate(TObject *Sender); void __fastcall StartButtonClick(TObject *Sender); void __fastcall StopButtonClick(TObject *Sender); void __fastcall ExitButtonClick(TObject *Sender); private: // User declarations TRegistry *DriverRegistry; public: // User declarations __fastcall TScanForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TScanForm *ScanForm; //--------------------------------------------------------------------------- #define MyKey "Software\\PCIFIND\\NTioPCI\\Parameters" #endif