home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xceptn.zip / AppDefs.C < prev    next >
C/C++ Source or Header  |  1994-09-26  |  1KB  |  40 lines

  1. #pragma    title("Exception Example  --  Version 1.0  --  (AppDefs.C)")
  2. #pragma    subtitle("   Global Definitions - Interface Definitions")
  3.  
  4. #define    INCL_WIN           /* Include OS/2 PM Windows Interface    */
  5.  
  6. #pragma    info(noext)
  7.  
  8. #include <os2.h>
  9.  
  10. #include "appdefs.h"
  11. #include "except.h"
  12. #include "heapmem.h"
  13.  
  14. /* This    module contains    the global definitions for the exception    */
  15. /* example.                                */
  16.  
  17. /* Filename:   AppDefs.C                        */
  18.  
  19. /*  Version:   1.0                            */
  20. /*  Created:   1994-08-23                        */
  21. /*  Revised:   1994-08-23                        */
  22.  
  23. /* Routines:                                */
  24.  
  25.  
  26. /* Copyright ╕ 1994, 1995  Prominare Inc.  All Rights Reserved.        */
  27.  
  28. /* --------------------------------------------------------------------    */
  29.  
  30. FONTMETRICS fm;               /* Font Metrics Info            */
  31. HAB        hAB;           /* Program Anchor Block Handle    */
  32. HSWITCH        hSwitch;           /* Task List    Entry Handle        */
  33.  
  34. HMQ  hmqExcept;               /* Program Message Queue Handle    */
  35. HWND hwndExcept;           /* Client Window Handle        */
  36. HWND hwndExceptFrame;           /* Frame Window Handle        */
  37. HWND hmenuExcept;           /* Menu Handle            */
  38.  
  39. HHEAPMEM hHeap;               /* Controls Heap Handle        */
  40.