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.
26 lines
328 B
26 lines
328 B
/*++
|
|
|
|
Copyright (c) 2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
input.hxx
|
|
|
|
Abstract:
|
|
|
|
This header file declares routine for getting user input.
|
|
|
|
Author:
|
|
|
|
JasonHa
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _INPUT_HXX_
|
|
#define _INPUT_HXX_
|
|
|
|
HRESULT GetYNInput(PDEBUG_CONTROL Control, PCSTR Prompt);
|
|
|
|
#endif _INPUT_HXX_
|
|
|