diff options
Diffstat (limited to 'utils/hlfaceposer/inputproperties.h')
| -rw-r--r-- | utils/hlfaceposer/inputproperties.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/utils/hlfaceposer/inputproperties.h b/utils/hlfaceposer/inputproperties.h new file mode 100644 index 0000000..250ccfa --- /dev/null +++ b/utils/hlfaceposer/inputproperties.h @@ -0,0 +1,29 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef INPUTPROPERTIES_H +#define INPUTPROPERTIES_H +#ifdef _WIN32 +#pragma once +#endif + +#include "basedialogparams.h" +//----------------------------------------------------------------------------- +// Purpose: +//----------------------------------------------------------------------------- +struct CInputParams : public CBaseDialogParams +{ + char m_szPrompt[ 256 ]; + + // i/o input text + char m_szInputText[ 1024 ]; +}; + +// Display/create dialog +int InputProperties( CInputParams *params ); + +#endif // INPUTPROPERTIES_H |