diff options
author | George Hazan <george.hazan@gmail.com> | 2013-10-22 14:40:42 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-10-22 14:40:42 +0000 |
commit | cda1de4a64338e8d2bf71a41b595c1607c86ee9d (patch) | |
tree | 959fb2f90ea1019d5bf8b77b3bd49faaeb2cb72c /plugins/WinterSpeak/src/main.cpp | |
parent | a27aa5dcda7e65de6e1bb04cfd8ea678242648d0 (diff) |
MS_* comes for services, ME_* - for events
git-svn-id: http://svn.miranda-ng.org/main/trunk@6585 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WinterSpeak/src/main.cpp')
-rw-r--r-- | plugins/WinterSpeak/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/WinterSpeak/src/main.cpp b/plugins/WinterSpeak/src/main.cpp index 2bbd768ae9..56e7665459 100644 --- a/plugins/WinterSpeak/src/main.cpp +++ b/plugins/WinterSpeak/src/main.cpp @@ -66,7 +66,7 @@ int eventMessageAdded(WPARAM wParam, LPARAM lParam) int protocolAck(WPARAM, LPARAM lParam)
{
g_speak_announce->protocolAck(reinterpret_cast<ACKDATA *>(lParam));
-
+
return 0;
}
@@ -117,8 +117,8 @@ extern "C" __declspec(dllexport) int Load(void) g_speak_config = new SpeakConfig(g_hInst);
// expose to allow miranda + plugins to access my speak routines
- CreateServiceFunction(ME_SPEAK_STATUS, status);
- CreateServiceFunction(ME_SPEAK_MESSAGE, message);
+ CreateServiceFunction(MS_SPEAK_STATUS, status);
+ CreateServiceFunction(MS_SPEAK_MESSAGE, message);
}
if (!g_speak_announce)
|