📄 mywavein.h
字号:
// MyWaveIn.h: interface for the CMyWaveIn class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MYWAVEIN_H__D6D88534_ED10_4ADA_8340_03302FE5E649__INCLUDED_)
#define AFX_MYWAVEIN_H__D6D88534_ED10_4ADA_8340_03302FE5E649__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "WaveIn.h"
#include "UdpSocket.h"
#include <afxmt.h>
class CMyWaveIn : public CWaveIn
{
public:
void EnableSend(BOOL bSend);
CMyWaveIn(CUdpSocket *pTemp);
virtual ~CMyWaveIn();
virtual void GetData(char *pBuffer,int iLen);
protected:
CUdpSocket *m_pUdp;
BOOL m_bSend;
CCriticalSection m_soLock;
char m_cBufOut[1024];
};
#endif // !defined(AFX_MYWAVEIN_H__D6D88534_ED10_4ADA_8340_03302FE5E649__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -