diff options
author | George Hazan <george.hazan@gmail.com> | 2013-08-16 14:34:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-08-16 14:34:41 +0000 |
commit | 35489ce3659220b4ebd25d1b3ab0258115cf10a4 (patch) | |
tree | 611d9ebaa2f85129af43492368381c55ccbb1a5e /protocols/Tlen/src/tlen_voice.h | |
parent | 2611fbb22f7e186cb989f2b16133dad5215e41e1 (diff) |
Tlen:
- custom base64 removed;
- strict prototype verification
git-svn-id: http://svn.miranda-ng.org/main/trunk@5719 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tlen/src/tlen_voice.h')
-rw-r--r-- | protocols/Tlen/src/tlen_voice.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/protocols/Tlen/src/tlen_voice.h b/protocols/Tlen/src/tlen_voice.h index 0018bb6e17..cbd71aa1f1 100644 --- a/protocols/Tlen/src/tlen_voice.h +++ b/protocols/Tlen/src/tlen_voice.h @@ -57,14 +57,15 @@ typedef struct TLEN_VOICE_CONTROL_STRUCT { } TLEN_VOICE_CONTROL;
-extern void __cdecl TlenVoiceSendingThread(TLEN_FILE_TRANSFER *ft);
-extern void __cdecl TlenVoiceReceiveThread(TLEN_FILE_TRANSFER *ft);
-extern int TlenVoiceIsInUse(TlenProtocol *proto);
-extern INT_PTR TlenVoiceContactMenuHandleVoice(void *ptr, LPARAM wParam, LPARAM lParam);
-extern int TlenVoiceCancelAll(TlenProtocol *proto);
-extern int TlenVoiceStart(TLEN_FILE_TRANSFER *ft, int mode) ;
-extern int TlenVoiceAccept(TlenProtocol *proto, const char *id, const char *from);
-extern int TlenVoiceBuildInDeviceList(TlenProtocol *proto, HWND hWnd);
-extern int TlenVoiceBuildOutDeviceList(TlenProtocol *proto, HWND hWnd);
+void __cdecl TlenVoiceSendingThread(TLEN_FILE_TRANSFER *ft);
+void __cdecl TlenVoiceReceiveThread(TLEN_FILE_TRANSFER *ft);
+
+int TlenVoiceStart(TLEN_FILE_TRANSFER *ft, int mode) ;
+int TlenVoiceAccept(TlenProtocol *proto, const char *id, const char *from);
+int TlenVoiceIsInUse(TlenProtocol *proto);
+int TlenVoiceCancelAll(TlenProtocol *proto);
+int TlenVoiceBuildInDeviceList(TlenProtocol *proto, HWND hWnd);
+int TlenVoiceBuildOutDeviceList(TlenProtocol *proto, HWND hWnd);
+
#endif
|