diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-23 06:29:09 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-23 06:29:09 +0000 |
commit | 0e13cbe768de6de5cc4dccf5fab7fcd9f51a4b2e (patch) | |
tree | 58b585085d595d63569493dad09733b1eb6b84f9 /protocols/Skype/src/skype_proto.h | |
parent | c836f9498c19a8446150c240c222760aea5a70d4 (diff) |
added users languges support. not tested
git-svn-id: http://svn.miranda-ng.org/main/trunk@2059 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index 4f06f95746..16d5be39b9 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -19,6 +19,11 @@ struct _tag_iconList HANDLE Handle;
};
+struct LanguagesListEntry {
+ const char *szName;
+ char ISOcode[3];
+};
+
struct CSkypeProto : public PROTO_INTERFACE, public MZeroedObject
{
public:
|