home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / zfamily.zip / zfamily / ZNLFUNCS / SAMPLE / TSTCLOSE.INC < prev    next >
Text File  |  1993-09-21  |  2KB  |  56 lines

  1. /*
  2. ** /----------------------------------------------------------------------\
  3. ** |             IBM Z Family Reusable Libraries/2 (5641-504)             |
  4. ** |----------------------------------------------------------------------|
  5. ** | (C) Copyright International Business Machines Corporation 1993, 1994 |
  6. ** |----------------------------------------------------------------------|
  7. ** |                       DISCLAIMER OF WARRANTIES                       |
  8. ** |                       ------------------------                       |
  9. ** | The following code is sample code created by IBM Corporation.        |
  10. ** | Such a code is provided to you solely for the purpose of assisting   |
  11. ** | you in the development of your applications. The code is provided    |
  12. ** | "AS IS", without warranty of any kind.  IBM shall not be liable for  |
  13. ** | any damages arising out of your use of the following code, even if   |
  14. ** | they have been advised of the possibility of such damages.           |                                                                         *
  15. ** \----------------------------------------------------------------------/
  16. **
  17. **  Include  : TSTCLOSE.INC
  18. **  Author   : Dario de Judicibus (DEJUDICI at ROMEPPC)
  19. **  Reviewer : Dario de Judicibus (DEJUDICI at ROMEPPC)
  20. **  Created  : 15 Jul 1992
  21. **  Updated  : 21 Sep 1993
  22. **  Version  : 3.22
  23. **  Content  : Code block for Termination
  24. **
  25. **  MAIN LOGIC
  26. **
  27. **  - Ask user for confirmation to EXIT
  28. **  - Send WM_CLOSE to Test Object Window
  29. **  - Close the main window
  30. **
  31. */
  32. {
  33.    APIRET rc ;
  34.    char title[tstMAXSTRLEN] ;
  35.    char question[tstMAXSTRLEN] ;
  36.  
  37.   /*
  38.   **  Ask user for confirmation to EXIT
  39.   */
  40.    WinLoadString(hAB, 0, tstSTR_EXITREQUEST, tstMAXSTRLEN, title) ;
  41.    WinLoadString(hAB, 0, tstWRN_AREYOUSURE,  tstMAXSTRLEN, question) ;
  42.  
  43.    rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP,
  44.                       question,
  45.                       title,
  46.                       1,
  47.                       MB_OKCANCEL | MB_APPLMODAL |
  48.                       MB_MOVEABLE | MB_ICONQUESTION) ;
  49.  
  50.   if (rc == MBID_CANCEL) break ;
  51.  
  52.   /*
  53.   **  Close the main window (in the mainline)
  54.   */
  55. }
  56.