diff options
author | Mataes <mataes2007@gmail.com> | 2018-03-17 21:41:50 +0300 |
---|---|---|
committer | Mataes <mataes2007@gmail.com> | 2018-03-17 21:41:50 +0300 |
commit | f632783f27da5dd0ed3513bbee6182ea8af30afe (patch) | |
tree | 9cc74d2944501221126e628404532aed8c7b5cd9 /plugins/FTPFileYM/src/mir_db.h | |
parent | 32ac77ea600fa6ae33fea77d2be8fdaec865da7b (diff) |
FTPFile: replace mir_strcpy and mir_wstrcpy
Diffstat (limited to 'plugins/FTPFileYM/src/mir_db.h')
-rw-r--r-- | plugins/FTPFileYM/src/mir_db.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/FTPFileYM/src/mir_db.h b/plugins/FTPFileYM/src/mir_db.h index 750f6c6b8a..bc92bd1e15 100644 --- a/plugins/FTPFileYM/src/mir_db.h +++ b/plugins/FTPFileYM/src/mir_db.h @@ -34,11 +34,5 @@ public: static int getWordF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
static int getDwordF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
- // !!!!!!!!!!!!!!!!!!! dangerous as hell
- static int getAString(MCONTACT hContact, char *szModule, char *szSetting, char *buff);
- static int getAStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, char *buff);
- static int getString(MCONTACT hContact, char *szModule, char *szSetting, wchar_t *buff);
- static int getStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, wchar_t *buff);
-
static int deleteSettingF(MCONTACT hContact, char *szModule, char *szSetting, int id);
};
|