1 #ifndef _RECORD_H_
2 #define _RECORD_H_
3 
4 #ifdef _WINDOWS
5 void RecordStart();
6 void RecordBuffer(unsigned char* pSound,long lBytes);
7 void RecordStop();
8 BOOL CALLBACK RecordDlgProc(HWND hW, UINT uMsg, WPARAM wParam, LPARAM lParam);
9 #endif
10 
11 #endif