Fix windows build.
TBR=andrew Review URL: http://webrtc-codereview.appspot.com/125001 git-svn-id: http://webrtc.googlecode.com/svn/trunk@411 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
f81f9f8c2a
commit
adb23827c1
@ -347,8 +347,10 @@ class TelephoneEventObserver: public VoETelephoneEventObserver
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TelephoneEventObserver(CWnd* editControlOut, CWnd* editControlIn);
|
TelephoneEventObserver(CWnd* editControlOut, CWnd* editControlIn);
|
||||||
virtual void OnReceivedTelephoneEventInband(const int channel, const unsigned char eventCode, const bool endOfEvent);
|
virtual void OnReceivedTelephoneEventInband(int channel, int eventCode,
|
||||||
virtual void OnReceivedTelephoneEventOutOfBand(const int channel, const unsigned char eventCode, const bool endOfEvent);
|
bool endOfEvent);
|
||||||
|
virtual void OnReceivedTelephoneEventOutOfBand(int channel, int eventCode,
|
||||||
|
bool endOfEvent);
|
||||||
private:
|
private:
|
||||||
CWnd* _editControlOutPtr;
|
CWnd* _editControlOutPtr;
|
||||||
CWnd* _editControlInPtr;
|
CWnd* _editControlInPtr;
|
||||||
@ -360,7 +362,9 @@ TelephoneEventObserver::TelephoneEventObserver(CWnd* editControlOut, CWnd* editC
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void TelephoneEventObserver::OnReceivedTelephoneEventInband(const int channel, const unsigned char eventCode, const bool endOfEvent)
|
void TelephoneEventObserver::OnReceivedTelephoneEventInband(int channel,
|
||||||
|
int eventCode,
|
||||||
|
bool endOfEvent)
|
||||||
{
|
{
|
||||||
CString msg;
|
CString msg;
|
||||||
if (endOfEvent)
|
if (endOfEvent)
|
||||||
@ -375,7 +379,9 @@ void TelephoneEventObserver::OnReceivedTelephoneEventInband(const int channel, c
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TelephoneEventObserver::OnReceivedTelephoneEventOutOfBand(const int channel, const unsigned char eventCode, const bool endOfEvent)
|
void TelephoneEventObserver::OnReceivedTelephoneEventOutOfBand(int channel,
|
||||||
|
int eventCode,
|
||||||
|
bool endOfEvent)
|
||||||
{
|
{
|
||||||
CString msg;
|
CString msg;
|
||||||
if (endOfEvent)
|
if (endOfEvent)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user