mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
514 B
22 lines
514 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// 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_
|
|
|