12345678910111213141516171819202122232425 |
- #ifndef Globals_H
- #define Globals_H
- #define WIN32_LEAN_AND_MEAN
- #include <Windows.h>
- #ifndef Global
- #define Global extern
- #endif
- namespace Framework
- {
- class WFensterArray; // Fenster.h
- Global WFensterArray WFensterA;
- Global bool MausTrack;
- Global bool MausStand[ 3 ];
- Global bool TastenStand[ 255 ];
- Global bool msgExit;
- bool getTastenStand( unsigned char taste );
- void initFramework();
- }
- #endif
|