diff options
author | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-01-20 16:25:13 +0100 |
---|---|---|
committer | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-01-20 16:37:39 +0100 |
commit | 087173d06f4848f19d186b6902d399ce9b7225e1 (patch) | |
tree | 0cb2330486f445a2fa56c6da3a2d7ee983df6f52 /protocols/Gadu-Gadu/src/gg_proto.h | |
parent | de12828fb9051fba1db1e4573cff56ee83ab6b1f (diff) |
Gadu-Gadu: code cleaning
Diffstat (limited to 'protocols/Gadu-Gadu/src/gg_proto.h')
-rw-r--r-- | protocols/Gadu-Gadu/src/gg_proto.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/protocols/Gadu-Gadu/src/gg_proto.h b/protocols/Gadu-Gadu/src/gg_proto.h index fc6c5de185..f1ffb37947 100644 --- a/protocols/Gadu-Gadu/src/gg_proto.h +++ b/protocols/Gadu-Gadu/src/gg_proto.h @@ -233,7 +233,7 @@ struct GGPROTO : public PROTO<GGPROTO> HANDLE hConnStopEvent;
SOCKET sock;
UINT_PTR timer;
- struct
+ struct Modemsg
{
wchar_t *online;
wchar_t *away;
@@ -241,7 +241,8 @@ struct GGPROTO : public PROTO<GGPROTO> wchar_t *freechat;
wchar_t *invisible;
wchar_t *offline;
- } modemsg;
+ };
+ Modemsg modemsg;
HGENMENU hMainMenu[7];
HGENMENU hBlockMenuItem, hImageMenuItem, hInstanceMenuItem;
@@ -251,14 +252,14 @@ struct GGPROTO : public PROTO<GGPROTO> HANDLE hPopupNotify, hPopupError;
};
-typedef struct
+struct GGUSERUTILDLGDATA
{
int mode;
uin_t uin;
char *pass;
char *email;
GGPROTO *gg;
-} GGUSERUTILDLGDATA;
+};
#ifdef DEBUGMODE
|