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
645 B
28 lines
645 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1991 - 1994.
|
|
//
|
|
// File: PSource.hxx
|
|
//
|
|
// Contents: TEXT_SOURCE implementation for a phrase
|
|
//
|
|
// Classes: CTextSource
|
|
//
|
|
// History: 20-Apr-94 KyleP Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
class CPhraseSource : public tagTEXT_SOURCE
|
|
{
|
|
public:
|
|
|
|
CPhraseSource( WCHAR const * pwcPhrase, unsigned cwcPhrase );
|
|
|
|
private:
|
|
|
|
static SCODE FillBuf( TEXT_SOURCE * pTextSource );
|
|
};
|
|
|