//--------------------------------------------------------------------------- #ifndef SupportedCapsDialogH #define SupportedCapsDialogH //--------------------------------------------------------------------------- #include #include #include #include //--------------------------------------------------------------------------- class TSupportedCapsDlg : public TForm { __published: // IDE-managed Components TGroupBox *GroupBox1; TLabel *_lblSupportedCapsCount; TListBox *_lstSupportedCaps; TButton *_btnOK; void __fastcall FormCreate(TObject *Sender); private: // User declarations int _CapsCount; int _AvailableCapsCount; void FillCapabilityName(L_UINT uCap); public: // User declarations __fastcall TSupportedCapsDlg(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TSupportedCapsDlg *SupportedCapsDlg; //--------------------------------------------------------------------------- #endif