diff options
author | George Hazan <george.hazan@gmail.com> | 2014-08-14 12:12:35 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-08-14 12:12:35 +0000 |
commit | 0a1ec91589a265b41210068b8d21fa469e750a08 (patch) | |
tree | 2d439bc1241b12ccadd66660d08f7b325d459ebd /src/core | |
parent | 9f478bb53be99c6ad5cf69c1a61cc14900cf72b8 (diff) |
account creation code extracted to the separate service function, MS_PROTO_CREATEACCOUNT
git-svn-id: http://svn.miranda-ng.org/main/trunk@10181 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/miranda.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/miranda.h b/src/core/miranda.h index 29c3e48a5b..ccac4fc323 100644 --- a/src/core/miranda.h +++ b/src/core/miranda.h @@ -144,14 +144,16 @@ void KillModuleMenus(int hLangpack); extern LIST<PROTOACCOUNT> accounts;
-PROTOACCOUNT* __fastcall Proto_GetAccount(const char* accName);
+PROTOACCOUNT* Proto_CreateAccount(const char *szProtoName, const char *szBaseProto, const TCHAR *tszAccountName);
+
+PROTOACCOUNT* __fastcall Proto_GetAccount(const char *accName);
PROTOACCOUNT* __fastcall Proto_GetAccount(MCONTACT hContact);
-PROTOCOLDESCRIPTOR* __fastcall Proto_IsProtocolLoaded(const char* szProtoName);
+PROTOCOLDESCRIPTOR* __fastcall Proto_IsProtocolLoaded(const char *szProtoName);
bool __fastcall Proto_IsAccountEnabled(PROTOACCOUNT *pa);
bool __fastcall Proto_IsAccountLocked(PROTOACCOUNT *pa);
-PROTO_INTERFACE* AddDefaultAccount(const char* szProtoName);
+PROTO_INTERFACE* AddDefaultAccount(const char *szProtoName);
int FreeDefaultAccount(PROTO_INTERFACE* ppi);
BOOL ActivateAccount(PROTOACCOUNT *pa);
|