home *** CD-ROM | disk | FTP | other *** search
- //-----------------------------------------------------------------------------
- // Freeware. This file may be used freely to promote the ioctl90 mixer API.
- //-----------------------------------------------------------------------------
- // Help.c
- //
- // Help display module
- //-----------------------------------------------------------------------------
-
- #include <stdio.h>
-
- #include <os2.h> // typedefs
-
- #include "data.h"
-
- void Help (BOOL fExtendedHelp)
- {
- printf ("\n");
- printf ("\n");
- printf ("IOCTL90\n");
- printf ("A 32-bit OS/2 test program to verify device driver programming\n");
- printf ("of Crystal Semiconductor defined Category 0x90 mixer IOCTLs.\n");
- printf ("\n");
- printf ("The program provides a prompt and accepts commands from\n");
- printf ("the keyboard.\n");
- printf ("\n");
- printf ("Most of the commands corespond to the mixer IOCTLs\n");
- printf ("defined in the document, ioctl90.html.\n");
- printf ("\n");
- printf ("Syntax:\n");
- printf (" IOCTL90 [-h, -v]\n");
- printf (" -h Help\n");
- printf (" -v Verbose\n");
- //printf (" -HELP Extended help\n");
- printf ("\n");
- printf ("Original written by Joe Nord, Crystal Semiconductor, Mar 1999\n");
- printf ("\n");
-
- if (fExtendedHelp)
- {
- }
- }
-