From 6ce4b99cb3dc5522ecf8fa337de661055ef5708c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 25 Aug 2013 12:08:14 +0000 Subject: MString removed from Jabber & IRC git-svn-id: http://svn.miranda-ng.org/main/trunk@5824 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/IRCG/src/MString.cpp | 131 ----------------------------------------- 1 file changed, 131 deletions(-) delete mode 100644 protocols/IRCG/src/MString.cpp (limited to 'protocols/IRCG/src/MString.cpp') diff --git a/protocols/IRCG/src/MString.cpp b/protocols/IRCG/src/MString.cpp deleted file mode 100644 index bde089d9ac..0000000000 --- a/protocols/IRCG/src/MString.cpp +++ /dev/null @@ -1,131 +0,0 @@ -#include "irc.h" -#include "MString.h" - -///////////////////////////////////////////////////////////////////////////////////////// -// CMBaseString - -CNilMStringData CMBaseString::m_nil; - -CMStringData* CMBaseString::Allocate(int nChars, int nCharSize) -{ - CMStringData* pData; - nChars++; // nil char - size_t nDataBytes = nCharSize * nChars; - size_t nTotalSize = nDataBytes + sizeof(CMStringData); - - pData = static_cast(malloc(nTotalSize)); - if (pData == NULL) - return NULL; - - pData->nRefs = 1; - pData->nAllocLength = nChars - 1; - pData->nDataLength = 0; - return pData; -} - -void CMBaseString::Free(CMStringData* pData) -{ - free(pData); -} - -CMStringData* CMBaseString::Realloc(CMStringData* pData, int nChars, int nCharSize) -{ - CMStringData* pNewData; - nChars++; // nil char - ULONG nDataBytes = nCharSize * nChars; - ULONG nTotalSize = nDataBytes + sizeof(CMStringData); - - pNewData = static_cast(realloc(pData, nTotalSize)); - if (pNewData == NULL) - return NULL; - - pNewData->nAllocLength = nChars - 1; - return pNewData; -} - -CMStringData* CMBaseString::GetNilString() -{ - m_nil.AddRef(); - return &m_nil; -} - -///////////////////////////////////////////////////////////////////////////////////////// -// CMStringData - -void* CMStringData::data() -{ - return (this + 1); -} - -void CMStringData::AddRef() -{ - InterlockedIncrement(&nRefs); -} - -bool CMStringData::IsLocked() const -{ - return nRefs < 0; -} - -bool CMStringData::IsShared() const -{ - return (nRefs > 1); -} - -void CMStringData::Lock() -{ - nRefs--; // Locked buffers can't be shared, so no interlocked operation necessary - if (nRefs == 0) - nRefs = -1; -} - -void CMStringData::Release() -{ - if (InterlockedDecrement(&nRefs) <= 0) - CMBaseString::Free(this); -} - -void CMStringData::Unlock() -{ - if (IsLocked()) - { - nRefs++; // Locked buffers can't be shared, so no interlocked operation necessary - if (nRefs == 0) - nRefs = 1; - } -} - -CNilMStringData::CNilMStringData() -{ - nRefs = 2; // Never gets freed - nDataLength = 0; - nAllocLength = 0; - achNil[0] = 0; - achNil[1] = 0; -} - -///////////////////////////////////////////////////////////////////////////////////////// -// ChTraitsCRT - -int __stdcall ChTraitsCRT::GetFormattedLength( LPCWSTR pszFormat, va_list args ) -{ - return _vscwprintf(pszFormat, args); -} - -int __stdcall ChTraitsCRT::Format( LPWSTR pszBuffer, size_t nLength, LPCWSTR pszFormat, va_list args) -{ - return _vsnwprintf(pszBuffer, nLength, pszFormat, args); -} - -///////////////////////////////////////////////////////////////////////////////////////// -// ChTraitsCRT - -int __stdcall ChTraitsCRT::GetFormattedLength( LPCSTR pszFormat, va_list args ) -{ - return _vscprintf(pszFormat, args); -} - -int __stdcall ChTraitsCRT::Format( LPSTR pszBuffer, size_t nlength, LPCSTR pszFormat, va_list args ) -{ - return vsprintf_s(pszBuffer, nlength, pszFormat, args); -} -- cgit v1.2.3