//--------------------------------------------------------------------------- #ifndef SplashFormUnitH #define SplashFormUnitH #include #include #include #include #include #include //--------------------------------------------------------------------------- class TSplashForm : public TForm { __published: // IDE-managed Components TImage *m_imgBk; TLabel *m_lblProgress; private: // User declarations public: // User declarations __fastcall TSplashForm(TComponent* Owner); void __fastcall ShowProgress( String strMsg ); }; //--------------------------------------------------------------------------- extern PACKAGE TSplashForm *SplashForm; //--------------------------------------------------------------------------- #endif