diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-10 08:04:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-10 08:04:30 +0000 |
commit | ddba4ede6b451d0cfcd0d32b5180fbd0689966bf (patch) | |
tree | 5d74f37a7013d13b92c182628d6b68a58e148ae4 /plugins/FTPFileYM/src/mir_db.h | |
parent | c39340bf493a1745a41317bbf937fc7eb6cbb26a (diff) |
- HANDLE hContact => HCONTACT
- GCF_* prefix was added to chat constants to avoid name conflicts
git-svn-id: http://svn.miranda-ng.org/main/trunk@8078 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FTPFileYM/src/mir_db.h')
-rw-r--r-- | plugins/FTPFileYM/src/mir_db.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/plugins/FTPFileYM/src/mir_db.h b/plugins/FTPFileYM/src/mir_db.h index d46b16fb06..e5175fdc0a 100644 --- a/plugins/FTPFileYM/src/mir_db.h +++ b/plugins/FTPFileYM/src/mir_db.h @@ -23,22 +23,22 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. class DB
{
public:
- static int setByteF(HANDLE hContact, char *szModule, char *szSetting, int id, int iValue);
- static int setWordF(HANDLE hContact, char *szModule, char *szSetting, int id, int iValue);
- static int setDwordF(HANDLE hContact, char *szModule, char *szSetting, int id, int iValue);
+ static int setByteF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iValue);
+ static int setWordF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iValue);
+ static int setDwordF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iValue);
- static int setAStringF(HANDLE hContact, char *szModule, char *szSetting, int id, char *szValue);
- static int setStringF(HANDLE hContact, char *szModule, char *szSetting, int id, TCHAR *stzValue);
+ static int setAStringF(HCONTACT hContact, char *szModule, char *szSetting, int id, char *szValue);
+ static int setStringF(HCONTACT hContact, char *szModule, char *szSetting, int id, TCHAR *stzValue);
- static int getByteF(HANDLE hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
- static int getWordF(HANDLE hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
- static int getDwordF(HANDLE hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
+ static int getByteF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
+ static int getWordF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
+ static int getDwordF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
// !!!!!!!!!!!!!!!!!!! dangerous as hell
- static int getAString(HANDLE hContact, char *szModule, char *szSetting, char *buff);
- static int getAStringF(HANDLE hContact, char *szModule, char *szSetting, int id, char *buff);
- static int getString(HANDLE hContact, char *szModule, char *szSetting, TCHAR *buff);
- static int getStringF(HANDLE hContact, char *szModule, char *szSetting, int id, TCHAR *buff);
+ static int getAString(HCONTACT hContact, char *szModule, char *szSetting, char *buff);
+ static int getAStringF(HCONTACT hContact, char *szModule, char *szSetting, int id, char *buff);
+ static int getString(HCONTACT hContact, char *szModule, char *szSetting, TCHAR *buff);
+ static int getStringF(HCONTACT hContact, char *szModule, char *szSetting, int id, TCHAR *buff);
- static int deleteSettingF(HANDLE hContact, char *szModule, char *szSetting, int id);
+ static int deleteSettingF(HCONTACT hContact, char *szModule, char *szSetting, int id);
};
|