diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-10-29 08:47:48 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-10-29 08:47:48 +0000 |
commit | 50421b7809c47bd95c59b4a5627e2f89c8bccfa5 (patch) | |
tree | 323784b1c0bb7c86e5df509aab310fa1404680ef /protocols/SkypeClassic/src/voiceservice.h | |
parent | 8604516498f9135ac1c4379488228d84e69a89ab (diff) |
SkypeClassic: Folders structure and project cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@6668 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeClassic/src/voiceservice.h')
-rw-r--r-- | protocols/SkypeClassic/src/voiceservice.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/protocols/SkypeClassic/src/voiceservice.h b/protocols/SkypeClassic/src/voiceservice.h new file mode 100644 index 0000000000..0ffbd6d9ca --- /dev/null +++ b/protocols/SkypeClassic/src/voiceservice.h @@ -0,0 +1,18 @@ +#ifndef _VOICESERVICE_H_
+#define _VOICESERVICE_H_
+
+#pragma warning (push)
+#pragma warning (disable: 4201) // nonstandard extension used : nameless struct/union
+#include <m_voice.h>
+#pragma warning (pop)
+
+BOOL HasVoiceService();
+void VoiceServiceInit();
+void VoiceServiceExit();
+void VoiceServiceModulesLoaded();
+void NofifyVoiceService(HANDLE hContact, char *callId, int state) ;
+
+
+
+#endif // _VOICESERVICE_H_
+
|