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

53 lines
794 B
C++

/*
* TONE.CPP
*
*
*
*
*
*
*/
#include <windows.h>
#include <hidclass.h>
#include <hidsdi.h>
#include <ole2.h>
#include <ole2ver.h>
#include "..\inc\opos.h"
#include "oposctrl.h"
/*
* Define constructor/deconstructor.
*/
DEFINE_DEFAULT_CONTROL_CONSTRUCTOR(COPOSToneIndicator)
/*
* Define local methods to relay all generic control
* method calls to the m_genericControl member.
*/
DEFINE_GENERIC_CONTROL_FUNCTIONS(COPOSToneIndicator)
STDMETHODIMP_(LONG) COPOSToneIndicator::Sound(LONG NumberOfCycles, LONG InterSoundWait)
{
LONG result = 0;
// BUGBUG FINISH
return result;
}
STDMETHODIMP_(LONG) COPOSToneIndicator::SoundImmediate()
{
LONG result = 0;
// BUGBUG FINISH
return result;
}