2025-04-27 07:49:33 -04:00

22 lines
427 B
C++

// BaseTool.cpp : Implementation of CBaseTool
//
// Copyright (C) 1997 Microsoft Corporation. All Rights Reserved
//
#include "dmusicc.h"
#include "dmusici.h"
#include "debug.h"
#include "basetool.h"
CBaseTool::CBaseTool()
{
m_cRef = 1; // set to 1 so one call to Release() will free this
InitializeCriticalSection(&m_CrSec);
}
CBaseTool::~CBaseTool()
{
DeleteCriticalSection(&m_CrSec);
}