diff options
Diffstat (limited to 'Protocols/IAX/IAXProto.h')
-rw-r--r-- | Protocols/IAX/IAXProto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Protocols/IAX/IAXProto.h b/Protocols/IAX/IAXProto.h index 7eaf36b..3e841c9 100644 --- a/Protocols/IAX/IAXProto.h +++ b/Protocols/IAX/IAXProto.h @@ -29,6 +29,8 @@ typedef int (__cdecl IAXProto::*IAXEventFunc)(WPARAM, LPARAM); class IAXProto : public PROTO_INTERFACE
{
private:
+ HMEMORYMODULE iaxclient;
+ IAXCLIENT iax;
HANDLE hNetlibUser;
HANDLE hCallStateEvent;
int reg_id;
@@ -53,7 +55,7 @@ public: OptPageControl accountManagerCtrls[5];
OptPageControl optionsCtrls[7];
- IAXProto(const char *aProtoName, const TCHAR *aUserName);
+ IAXProto(HMEMORYMODULE iaxclient, const char *aProtoName, const TCHAR *aUserName);
virtual ~IAXProto();
virtual HANDLE __cdecl AddToList( int flags, PROTOSEARCHRESULT* psr ) { return 0; }
|