mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:52:57 +00:00
[ATL] Overload const-return-versions of FindChar/FindString/FindOneOf (#5473)
Overload the const-return-versions of FindChar/FindCharReverse/FindString/FindOneOf. Modify CStringT::Replace.
This commit is contained in:
parent
2010a5b8d9
commit
985680068c
2 changed files with 53 additions and 1 deletions
|
@ -358,6 +358,10 @@ public:
|
|||
return GetData()->nDataLength;
|
||||
}
|
||||
|
||||
PXSTR GetString() throw()
|
||||
{
|
||||
return m_pszData;
|
||||
}
|
||||
PCXSTR GetString() const throw()
|
||||
{
|
||||
return m_pszData;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue