diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-08 19:01:47 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-08 19:01:47 +0300 |
commit | e33349427eadab1658c54655db3190fc7329c47e (patch) | |
tree | 9fa5953f60f3ec5811203a925335327b36a34361 /protocols/YAMN/src/proto/pop3 | |
parent | dc2947a0f6d66ce1302ad26e413f81c9e2260ecc (diff) |
compilation fix
Diffstat (limited to 'protocols/YAMN/src/proto/pop3')
-rw-r--r-- | protocols/YAMN/src/proto/pop3/pop3comm.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/protocols/YAMN/src/proto/pop3/pop3comm.cpp b/protocols/YAMN/src/proto/pop3/pop3comm.cpp index c27b27b9bd..761d9a9ffd 100644 --- a/protocols/YAMN/src/proto/pop3/pop3comm.cpp +++ b/protocols/YAMN/src/proto/pop3/pop3comm.cpp @@ -32,9 +32,6 @@ int RegisterPOP3Plugin(WPARAM, LPARAM); // Unloads all variables created on heap (delete[])
DWORD WINAPI UnLoadPOP3(void *);
-// Function writes POP3 accounts using YAMN exported functions
-DWORD WINAPI WritePOP3Accounts();
-
// Function stores plugin's data for account to file
DWORD WINAPI WritePOP3Options(HANDLE, CAccount *);
@@ -257,7 +254,8 @@ DWORD WINAPI UnLoadPOP3(void *) return 1;
}
-DWORD WritePOP3Accounts()
+// Function writes POP3 accounts using YAMN exported functions
+DWORD WINAPI WritePOP3Accounts()
{
uint32_t ReturnValue = WriteAccountsToFile(POP3Plugin, wszFileName);
if (ReturnValue == EACC_SYSTEM) {
|