home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / toolkt21 / c / samples / npipe / clnpglbl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-12  |  975 b   |  22 lines

  1. /*
  2.  *   Clnpglbl.h - Variables global to the application.
  3.  *      Copyright 1991 IBM Corp.
  4.  */
  5.  
  6. /*--------------------------------------------------------------*\
  7.  *  Global variables                                            *
  8. \*--------------------------------------------------------------*/
  9.  
  10. extern HWND hwndMainFrame;            /* handle to the main frame window */
  11. extern HWND hwndMain;                 /* handle to the main client window */
  12. extern HAB  hab;                      /* anchor block for the process */
  13. extern BOOL fHelpEnabled;             /* flag to determine if help is enabled */
  14. extern BOOL fAppExit;                 /* flag to notify of application termination */
  15. extern BOOL fThrdsDead;               /* notification of thread exitting */
  16. #ifdef INCL_DOSSEMAPHORES
  17. extern HEV    hevWritePipe;           /* handle to event semaphore */
  18. #endif
  19. #ifdef SERVER
  20. extern PIPE_MSG  pmsgPipeMsg;         /* pipe message buffer */
  21. #endif
  22.