Globals.h 409 B

12345678910111213141516171819202122232425
  1. #ifndef Globals_H
  2. #define Globals_H
  3. #define WIN32_LEAN_AND_MEAN
  4. #include <Windows.h>
  5. #ifndef Global
  6. #define Global extern
  7. #endif
  8. namespace Framework
  9. {
  10. class WFensterArray; // Fenster.h
  11. Global WFensterArray WFensterA;
  12. Global bool MausTrack;
  13. Global bool MausStand[ 3 ];
  14. Global bool TastenStand[ 255 ];
  15. Global bool msgExit;
  16. bool getTastenStand( unsigned char taste );
  17. void initFramework();
  18. }
  19. #endif