home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PMTEST30.ZIP / FAILCASE.C next >
Text File  |  1991-01-31  |  865b  |  31 lines

  1.  
  2.   /**************************************************************************/
  3.   /*           (C) Copyright 1989-1991 Princeton Windowing Systems          */
  4.   /*                           All Rights Reserved                          */
  5.   /**************************************************************************/
  6.  
  7. /*************************************************************************
  8. *
  9. *  SOURCE FILE NAME:  failcase.c
  10. *
  11. *  DESCRIPTION:       Example of program which returns a FALSE in the DosExit
  12. *                     to indicate the failure of a case.
  13. *
  14. ************************************************************************/
  15.  
  16. /* ----------------- DECLARATIONS FOR THIS SOURCE FILE ----------------*/
  17. #define INCL_DOSPROCESS
  18. #include <os2.h>
  19.  
  20. VOID cdecl main( SHORT argc, CHAR *argv[] )
  21. {
  22. DosExit( 0, FALSE );
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. 
  31.