Source code of Windows XP (NT5)
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

  1. // BaseTool.cpp : Implementation of CBaseTool
  2. //
  3. // Copyright (C) 1997 Microsoft Corporation. All Rights Reserved
  4. //
  5. #include "dmusicc.h"
  6. #include "dmusici.h"
  7. #include "debug.h"
  8. #include "basetool.h"
  9. CBaseTool::CBaseTool()
  10. {
  11. m_cRef = 1; // set to 1 so one call to Release() will free this
  12. InitializeCriticalSection(&m_CrSec);
  13. }
  14. CBaseTool::~CBaseTool()
  15. {
  16. DeleteCriticalSection(&m_CrSec);
  17. }