23 lines
514 B
C++
23 lines
514 B
C++
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1994 - 1996.
|
|
//
|
|
// File: help.hxx
|
|
//
|
|
// Contents: Prototypes for functions to display instructions to the user.
|
|
//
|
|
// History: 04-20-95 DavidMun Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __HELP_HXX_
|
|
#define __HELP_HXX_
|
|
|
|
VOID DoHelp(WCHAR **ppwsz);
|
|
VOID DisplayUsage();
|
|
|
|
|
|
#endif // __HELP_HXX_
|
|
|