12345678910111213141516 |
- #ifndef Initialisierung_H
- #define Initialisierung_H
- #include <Knopf.h>
- #include <TextFeld.h>
- #include <Fenster.h>
- #include <Bild.h>
- using namespace Framework;
- Knopf *initKnopf( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *titel );
- TextFeld *initTextFeld( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *txt );
- Fenster *initFenster( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *titel );
- BildZ *initBildZ( int x, int y, int br, int hö, __int64 style, Bild *b );
- #endif
|