123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- ////////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2016 RWS Inc, All Rights Reserved
- //
- // This program is free software; you can redistribute it and/or modify
- // it under the terms of version 2 of the GNU General Public License as published by
- // the Free Software Foundation
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License along
- // with this program; if not, write to the Free Software Foundation, Inc.,
- // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // RES.CPP
- //
- // History:
- // 09/22/95 JMI Started.
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // This class stores data identified by a string.
- //
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // C Headers.
- //////////////////////////////////////////////////////////////////////////////
- #include <malloc.h>
- #include <string.h>
- //////////////////////////////////////////////////////////////////////////////
- // Blue Headers.
- //////////////////////////////////////////////////////////////////////////////
- #include "System.h"
- #include "bdebug.h"
- //////////////////////////////////////////////////////////////////////////////
- // Green Headers.
- //////////////////////////////////////////////////////////////////////////////
- #include "resitem.h"
- //////////////////////////////////////////////////////////////////////////////
- // Orange Headers.
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // Yellow Headers.
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // Module specific macros.
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // Module specific typedefs.
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // Module specific (static) variables.
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // Construction/Destruction Functions.
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- //
- // Default constructor.
- //
- //////////////////////////////////////////////////////////////////////////////
- CResItem::CResItem()
- {
- m_pszName = NULL;
- m_puc = NULL;
- m_lSize = 0L;
- m_sRefCnt = 0;
- m_pRes = NULL;
- }
- //////////////////////////////////////////////////////////////////////////////
- //
- // Constructura Especial! Ole!
- //
- //////////////////////////////////////////////////////////////////////////////
- CResItem::CResItem(char* pszName, UCHAR* puc, long lSize, CRes* pRes)
- {
- m_pszName = pszName;
- m_puc = puc;
- m_lSize = lSize;
- m_sRefCnt = 0;
- m_pRes = pRes;
- }
- //////////////////////////////////////////////////////////////////////////////
- //
- // Destructor.
- //
- //////////////////////////////////////////////////////////////////////////////
- CResItem::~CResItem()
- {
- if (m_sRefCnt != 0)
- {
- TRACE("~CResItem(): Destroyed with reference count of %d!\n",
- m_sRefCnt);
- }
- if (m_pszName != NULL)
- {
- // Remember that the name is the ptr that was allocated and includes
- // the resource data (where m_puc points).
- free(m_pszName);
- m_pszName = NULL;
- m_puc = NULL;
- }
- }
- //////////////////////////////////////////////////////////////////////////////
- // Methods.
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- //
- // Lock this item b4 using.
- // Returns new reference count.
- //
- //////////////////////////////////////////////////////////////////////////////
- short CResItem::Lock(void)
- {
- return ++m_sRefCnt;
- }
- //////////////////////////////////////////////////////////////////////////////
- //
- // Unlock this item when done. Deletes object if m_sRefCnt hits 0.
- // Returns new reference count.
- //
- //////////////////////////////////////////////////////////////////////////////
- short CResItem::Unlock(void)
- {
- ASSERT(m_sRefCnt > 0);
- return --m_sRefCnt;
- }
- //////////////////////////////////////////////////////////////////////////////
- // Internal Functions.
- //////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////
- // EOF
- //////////////////////////////////////////////////////////////////////////////
|