terminal/src/tsf/TfCtxtComp.h
Richard Yu fd2fb07bcf Remove ATL dependencies (#676) (#719)
* Remove CComBSTR dependency.
* Replace CStructureArray with std::vector.
* Remove CComPtr dependency.
* Add try blocks.
* Remove CString dependency.
* Add comments for string helper functions.
* Remove CComAllocator dependency.

Fixes #676.
2019-05-21 10:32:43 -07:00

45 lines
673 B
C++

/*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
Module Name:
TfCtxtComp.h
Abstract:
This file defines the Context of Composition Class.
Author:
Revision History:
Notes:
--*/
#pragma once
/////////////////////////////////////////////////////////////////////////////
// CCompCursorPos
class CCompCursorPos
{
public:
CCompCursorPos()
{
m_CursorPosition = 0;
}
void SetCursorPosition(DWORD CursorPosition)
{
m_CursorPosition = CursorPosition;
}
DWORD GetCursorPosition() { return m_CursorPosition; }
private:
DWORD m_CursorPosition;
};