40 lines
981 B
C++
40 lines
981 B
C++
/*==========================================================================
|
|
*
|
|
* Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
|
|
*
|
|
* File: arecs.cpp
|
|
* Content: This module contains the implementation of the CAudioRecordSubSystem
|
|
* class.
|
|
*
|
|
* History:
|
|
* Date By Reason
|
|
* ==== == ======
|
|
* 07/16/99 rodtoll Created
|
|
* 10/05/99 rodtoll Added DPF_MODNAMEs
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include "stdafx.h"
|
|
#include "arecs.h"
|
|
#include "OSInd.h"
|
|
|
|
#undef DPF_MODNAME
|
|
#define DPF_MODNAME "CAudioRecordSubSystem::CAudioRecordSubSystem"
|
|
// CAudioRecordSubSystem Constructor
|
|
//
|
|
// Placeholder
|
|
//
|
|
CAudioRecordSubSystem::CAudioRecordSubSystem()
|
|
{
|
|
}
|
|
|
|
#undef DPF_MODNAME
|
|
#define DPF_MODNAME "CAudioRecordSubSystem::~CAudioRecordSubSystem"
|
|
// CAudioRecordSubSystem Destructor
|
|
//
|
|
// Placeholder
|
|
//
|
|
CAudioRecordSubSystem::~CAudioRecordSubSystem()
|
|
{
|
|
}
|