1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| /*
| * Copyright(C) 2010,Custom Co., Ltd
| * FileName: Voice.h
| * Description:
| * Version: 1.0
| * Author: panyadong
| * Create Date: 2010-6-7
| * Modification History£º
| */
|
| #ifndef _VOICE_H
| #define _VOICE_H_
|
| #ifdef __cplusplus
| extern "C" { // ¼´Ê¹ÕâÊÇÒ»¸öC++³ÌÐò£¬ÏÂÁÐÕâ¸öº¯ÊýµÄʵÏÖÒ²ÒªÒÔCÔ¼¶¨µÄ·ç¸ñÀ´¸ã£¡
| #endif
|
| int SendVoice(char *ip, char *userName, char *password, char *filename);
|
| //ÓïÒôת·¢
| //int Demo_VoiceTrans(char * ip, char * userName, char * password, char * filename);
|
| #ifdef __cplusplus
| }
| #endif
|
| #endif
|
|