diff options
author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-12-15 04:27:30 +0000 |
---|---|---|
committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-12-15 04:27:30 +0000 |
commit | 1cb7189cc9f3ff7a01a347b6f5be2483f541badd (patch) | |
tree | a73c299a113b7e2b0338feed96cf549c299ad1bb /Protocols/IAX/IAXProto.h | |
parent | 2886b3c6f7d50f479f74796ce9f8c6ba0356070c (diff) |
iax: fix for shutdown
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@181 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Protocols/IAX/IAXProto.h')
-rw-r--r-- | Protocols/IAX/IAXProto.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Protocols/IAX/IAXProto.h b/Protocols/IAX/IAXProto.h index 32d0ad8..df399f9 100644 --- a/Protocols/IAX/IAXProto.h +++ b/Protocols/IAX/IAXProto.h @@ -95,7 +95,7 @@ public: virtual int __cdecl UserIsTyping( HANDLE hContact, int type ) { return 0; }
- virtual int __cdecl OnEvent( PROTOEVENTTYPE iEventType, WPARAM wParam, LPARAM lParam ) { return 1; }
+ virtual int __cdecl OnEvent( PROTOEVENTTYPE iEventType, WPARAM wParam, LPARAM lParam );
int iaxc_callback(iaxc_event &e);
@@ -106,6 +106,10 @@ private: HANDLE CreateProtoEvent(const char* szService);
int SendBroadcast(HANDLE hContact, int type, int result, HANDLE hProcess, LPARAM lParam);
+ int __cdecl OnModulesLoaded(WPARAM wParam, LPARAM lParam);
+ int __cdecl OnOptionsInit(WPARAM wParam,LPARAM lParam);
+ int __cdecl OnPreShutdown(WPARAM wParam,LPARAM lParam);
+
void ShowMessage(bool error, TCHAR *fmt, ...);
void Disconnect();
INT_PTR __cdecl CreateAccMgrUI(WPARAM wParam, LPARAM lParam);
|