blob: 250ccfa3300302eb5cb13719ae90b93f52a1d9e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
|