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.

32 lines
698 B

  1. //===== Copyright � 1996-2005, Valve Corporation, All rights reserved. ======//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //===========================================================================//
  7. #ifndef VGUI_ILOCALIZE_H
  8. #define VGUI_ILOCALIZE_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "localize/ilocalize.h"
  13. // Everything moved to localize lib; this is here for backward compat.
  14. namespace vgui
  15. {
  16. // direct references to localized strings
  17. typedef uint32 StringIndex_t;
  18. const uint32 INVALID_STRING_INDEX = (uint32) -1;
  19. abstract_class ILocalize : public ::ILocalize
  20. {
  21. public:
  22. virtual const char *FindAsUTF8( const char *tokenName ) = 0;
  23. };
  24. }; // namespace vgui
  25. #endif // VGUI_ILOCALIZE_H