Source code of Windows XP (NT5)
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.

28 lines
617 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1991 - 1994.
  5. //
  6. // File: PSource.hxx
  7. //
  8. // Contents: TEXT_SOURCE implementation for a phrase
  9. //
  10. // Classes: CTextSource
  11. //
  12. // History: 20-Apr-94 KyleP Created
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. class CPhraseSource : public tagTEXT_SOURCE
  17. {
  18. public:
  19. CPhraseSource( WCHAR const * pwcPhrase, unsigned cwcPhrase );
  20. private:
  21. static SCODE FillBuf( TEXT_SOURCE * pTextSource );
  22. };