Initialisierung.h 542 B

12345678910111213141516
  1. #ifndef Initialisierung_H
  2. #define Initialisierung_H
  3. #include <Knopf.h>
  4. #include <TextFeld.h>
  5. #include <Fenster.h>
  6. #include <Bild.h>
  7. using namespace Framework;
  8. Knopf *initKnopf( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *titel );
  9. TextFeld *initTextFeld( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *txt );
  10. Fenster *initFenster( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *titel );
  11. BildZ *initBildZ( int x, int y, int br, int hö, __int64 style, Bild *b );
  12. #endif