home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_12 / 2n12037a < prev    next >
Text File  |  1991-08-20  |  768b  |  27 lines

  1. /**********************************************************
  2.            File Name: NTFY_BOX.H
  3.        Expanded Name: Notify Box
  4.          Description: Include file for NTFY_BOX.C
  5.         Program List: 
  6. Global Function List: 
  7. Static Function List: 
  8.     Local Macro List: 
  9.          Global Data: 
  10.          Static Data: 
  11.          Portability: MS Windows C Compilers
  12. **********************************************************/
  13. #if !defined( NTFY_BOX_DEFINED )
  14.  
  15.     #define NTFY_BOX_DEFINED 
  16.  
  17.     int FAR NotifyBox( HWND hWndParent, LPSTR lpText,
  18.             LPSTR lpCaption, HANDLE hInstanceParent );
  19.  
  20.     HWND FAR NotifyBoxCreate( HWND hWndParent,
  21.             LPSTR lpText, LPSTR lpCaption,
  22.             HANDLE hInstanceParent );
  23.  
  24.     BOOL FAR NotifyBoxDestroy( HWND hWndNotify );
  25.  
  26. #endif
  27.