diff options
author | George Hazan <george.hazan@gmail.com> | 2014-08-13 14:18:43 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-08-13 14:18:43 +0000 |
commit | cf0d0dace174aa2c0e2f8b5df009d02266e0c96a (patch) | |
tree | a534b32bcb4784b7dfae5fe7fa3749bea4cd1c82 /protocols/SkypeClassic/src/voiceservice.h | |
parent | 96674592dd3493682a6cccb0b3dcf8ca019fd7a4 (diff) |
working C++ version restored
git-svn-id: http://svn.miranda-ng.org/main/trunk@10178 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeClassic/src/voiceservice.h')
-rw-r--r-- | protocols/SkypeClassic/src/voiceservice.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/protocols/SkypeClassic/src/voiceservice.h b/protocols/SkypeClassic/src/voiceservice.h index b638fbd2ae..6665fcaa5c 100644 --- a/protocols/SkypeClassic/src/voiceservice.h +++ b/protocols/SkypeClassic/src/voiceservice.h @@ -1,18 +1,18 @@ -#ifndef _VOICESERVICE_H_
-#define _VOICESERVICE_H_
-
-#pragma warning (push)
-#pragma warning (disable: 4201) // nonstandard extension used : nameless struct/union
-#include "sdk/m_voice.h"
-#pragma warning (pop)
-
-BOOL HasVoiceService();
-void VoiceServiceInit();
-void VoiceServiceExit();
-void VoiceServiceModulesLoaded();
-void NofifyVoiceService(MCONTACT hContact, char *callId, int state) ;
-
-
-
-#endif // _VOICESERVICE_H_
-
+#ifndef _VOICESERVICE_H_ +#define _VOICESERVICE_H_ + +#pragma warning (push) +#pragma warning (disable: 4201) // nonstandard extension used : nameless struct/union + +#pragma warning (pop) + +BOOL HasVoiceService(); +void VoiceServiceInit(); +void VoiceServiceExit(); +void VoiceServiceModulesLoaded(); +void NofifyVoiceService(HANDLE hContact, char *callId, int state) ; + + + +#endif // _VOICESERVICE_H_ + |