diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-18 11:49:36 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-18 11:49:36 +0000 |
commit | 871410044ecbac0d2dd67a7c98f8bcd2df9410eb (patch) | |
tree | f181c30ae2d28e8e6f76d026d79314116072918c /protocols/Xfire/src/Xfire_voicechat.h | |
parent | 563378c993b1c08a1bbe23e8f6c372c675c38e7a (diff) |
- naming conflict;
- 64-bit issues;
- warning fixes;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@14987 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/Xfire_voicechat.h')
-rw-r--r-- | protocols/Xfire/src/Xfire_voicechat.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/protocols/Xfire/src/Xfire_voicechat.h b/protocols/Xfire/src/Xfire_voicechat.h index 22da7485bc..c07997770d 100644 --- a/protocols/Xfire/src/Xfire_voicechat.h +++ b/protocols/Xfire/src/Xfire_voicechat.h @@ -76,17 +76,18 @@ using namespace xfirelib; class Xfire_voicechat : public Xfire_base {
private:
//interner status, des aktiven voicechats
- XFIREVOICECHATTYPE currentvoice;
+ XFIREVOICECHATTYPE m_currentvoice;
//ipportport structur für ts3
- ts3IPPORT* ipport;
+ ts3IPPORT* m_ipport;
//statuspacket caching
- SendGameStatus2Packet lastpacket;
+ SendGameStatus2Packet m_lastpacket;
//tsremotedll
- HMODULE tsrDLL;
+ HMODULE m_tsrDLL;
//tsrGetServerInfo funktion vom tsremotedll
- LPtsrGetServerInfo tsrGetServerInfo;
+ LPtsrGetServerInfo m_tsrGetServerInfo;
//pid für mumble
- DWORD pid;
+ DWORD m_pid;
+
public:
Xfire_voicechat();
~Xfire_voicechat();
|