home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mnth0109.zip / Timur / window.h < prev   
Text File  |  1993-04-12  |  653b  |  30 lines

  1. /* WINDOW.H
  2.  
  3. Copyright (c) 1993 Timur Tabi
  4. Copyright (c) 1993 Fasa Corporation
  5.  
  6. The following trademarks are the property of Fasa Corporation:
  7. BattleTech, CityTech, AeroTech, MechWarrior, BattleMech, and 'Mech.
  8. The use of these trademarks should not be construed as a challenge to these marks.
  9.  
  10. */
  11.  
  12. #ifdef WINDOW_C
  13. #define EXTERN
  14. #else
  15. #define EXTERN extern
  16. #endif
  17.  
  18. // Various window variables
  19. EXTERN HAB hab;
  20. EXTERN HWND hwndFrame;
  21. EXTERN HWND hwndClient;
  22.  
  23. // For determining the title and menu bar heights
  24. EXTERN HWND hwndMenu;
  25.  
  26. #undef EXTERN
  27.  
  28. void WindowSetTitle(char *szMapName);
  29. // This function sets the window title
  30.