Counter Strike : Global Offensive Source Code
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.

29 lines
728 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef INPUTPROPERTIES_H
  8. #define INPUTPROPERTIES_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "basedialogparams.h"
  13. //-----------------------------------------------------------------------------
  14. // Purpose:
  15. //-----------------------------------------------------------------------------
  16. struct CInputParams : public CBaseDialogParams
  17. {
  18. char m_szPrompt[ 256 ];
  19. // i/o input text
  20. char m_szInputText[ 1024 ];
  21. };
  22. // Display/create dialog
  23. int InputProperties( CInputParams *params );
  24. #endif // INPUTPROPERTIES_H