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.

39 lines
940 B

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