home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ioctlapi.zip / appsrc.zip / help.c < prev    next >
C/C++ Source or Header  |  1999-11-16  |  1KB  |  42 lines

  1. //-----------------------------------------------------------------------------
  2. // Freeware.  This file may be used freely to promote the ioctl90 mixer API.
  3. //-----------------------------------------------------------------------------
  4. // Help.c
  5. //
  6. // Help display module
  7. //-----------------------------------------------------------------------------
  8.  
  9. #include <stdio.h>
  10.  
  11. #include <os2.h>                        // typedefs
  12.  
  13. #include "data.h"
  14.  
  15. void Help (BOOL fExtendedHelp)
  16. {
  17.    printf ("\n");
  18.    printf ("\n");
  19.    printf ("IOCTL90\n");
  20.    printf ("A 32-bit OS/2 test program to verify device driver programming\n");
  21.    printf ("of Crystal Semiconductor defined Category 0x90 mixer IOCTLs.\n");
  22.    printf ("\n");
  23.    printf ("The program provides a prompt and accepts commands from\n");
  24.    printf ("the keyboard.\n");
  25.    printf ("\n");
  26.    printf ("Most of the commands corespond to the mixer IOCTLs\n");
  27.    printf ("defined in the document, ioctl90.html.\n");
  28.    printf ("\n");
  29.    printf ("Syntax:\n");
  30.    printf ("   IOCTL90 [-h, -v]\n");
  31.    printf ("   -h       Help\n");
  32.    printf ("   -v       Verbose\n");
  33.    //printf ("   -HELP    Extended help\n");
  34.    printf ("\n");
  35.    printf ("Original written by Joe Nord, Crystal Semiconductor, Mar 1999\n");
  36.    printf ("\n");
  37.  
  38.    if (fExtendedHelp)
  39.    {
  40.    }
  41. }
  42.