diff options
-rw-r--r-- | plugins/GmailNotifier/src/stdafx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/GmailNotifier/src/stdafx.h b/plugins/GmailNotifier/src/stdafx.h index 10623f9466..b24ccc862c 100644 --- a/plugins/GmailNotifier/src/stdafx.h +++ b/plugins/GmailNotifier/src/stdafx.h @@ -41,8 +41,8 @@ typedef struct s_resultLink{ }resultLink;
typedef struct s_Account{
- char name[64];
- char pass[64];
+ char name[256];
+ char pass[256];
char hosted[64];
MCONTACT hContact;
int oldResults_num;
@@ -88,4 +88,4 @@ int ParsePage(char *, resultLink *); void DeleteResults(resultLink *);
void BuildList(void);
-Account* GetAccountByContact(MCONTACT hContact);
\ No newline at end of file +Account* GetAccountByContact(MCONTACT hContact);
|