mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
406 B
21 lines
406 B
// 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);
|
|
}
|
|
|