?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef Unit1H
  4. #define Unit1H
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include <ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.         TImage *Image1;
  16.         TMemo *Memo1;
  17.         void __fastcall FormCreate(TObject *Sender);
  18. private:        // User declarations
  19. public:         // User declarations
  20.         __fastcall TForm1(TComponent* Owner);
  21.         void tracepixel(int i,int j);
  22.         void prhex(AnsiString name, int a);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern PACKAGE TForm1 *Form1;
  26. //---------------------------------------------------------------------------
  27. #endif
  28.