diff options
| author | George Hazan <george.hazan@gmail.com> | 2014-02-10 20:47:51 +0000 | 
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2014-02-10 20:47:51 +0000 | 
| commit | 68d3fd47bb9b75e65859d14199ffee01f16ac9a7 (patch) | |
| tree | fcc340ad7067561e57733b287f193a7dbed93dd4 /plugins/FTPFileYM/src | |
| parent | 7193759b046338c6f47ff2edb34743a1465791cd (diff) | |
HCONTACT is not needed anymore
git-svn-id: http://svn.miranda-ng.org/main/trunk@8086 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FTPFileYM/src')
| -rw-r--r-- | plugins/FTPFileYM/src/dialog.cpp | 2 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/ftpfile.cpp | 12 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/job_generic.cpp | 2 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/job_generic.h | 4 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/job_packer.cpp | 2 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/job_packer.h | 2 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/job_upload.cpp | 2 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/job_upload.h | 2 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/mir_db.cpp | 26 | ||||
| -rw-r--r-- | plugins/FTPFileYM/src/mir_db.h | 26 | 
10 files changed, 40 insertions, 40 deletions
diff --git a/plugins/FTPFileYM/src/dialog.cpp b/plugins/FTPFileYM/src/dialog.cpp index fa6a1f6dbd..ccc015afcf 100644 --- a/plugins/FTPFileYM/src/dialog.cpp +++ b/plugins/FTPFileYM/src/dialog.cpp @@ -229,7 +229,7 @@ INT_PTR CALLBACK UploadDialog::UploadDlgProc(HWND hwndDlg, UINT msg, WPARAM wPar  		}
  		case WM_COMMAND:
  		{
 -			HCONTACT hContact = uDlg->tabs[uDlg->activeTab]->job->hContact;
 +			MCONTACT hContact = uDlg->tabs[uDlg->activeTab]->job->hContact;
  			if (hContact != NULL)
  			{
  				if (CallService(MS_CLIST_MENUPROCESSCOMMAND, MAKEWPARAM(LOWORD(wParam),MPCF_CONTACTMENU), (LPARAM)hContact))
 diff --git a/plugins/FTPFileYM/src/ftpfile.cpp b/plugins/FTPFileYM/src/ftpfile.cpp index 8e91fba3fa..14eeeabb8e 100644 --- a/plugins/FTPFileYM/src/ftpfile.cpp +++ b/plugins/FTPFileYM/src/ftpfile.cpp @@ -35,7 +35,7 @@ extern Options &opt;  int PrebuildContactMenu(WPARAM wParam, LPARAM lParam);
  void PrebuildMainMenu();
  int TabsrmmButtonPressed(WPARAM wParam, LPARAM lParam);
 -int UploadFile(HCONTACT hContact, int iFtpNum, UploadJob::EMode mode);
 +int UploadFile(MCONTACT hContact, int iFtpNum, UploadJob::EMode mode);
  static PLUGININFOEX pluginInfoEx = 
  {
 @@ -210,7 +210,7 @@ int PrebuildContactMenu(WPARAM wParam, LPARAM lParam)  {
  	bool bIsContact = false;
 -	char *szProto = GetContactProto((HCONTACT)wParam);
 +	char *szProto = GetContactProto((MCONTACT)wParam);
  	if (szProto) bIsContact = (CallProtoService(szProto, PS_GETCAPS, PFLAGNUM_1, 0) & PF1_IM) ? true : false;
  	bool bHideRoot = opt.bHideInactive;
 @@ -236,7 +236,7 @@ void PrebuildMainMenu()  int TabsrmmButtonPressed(WPARAM wParam, LPARAM lParam) 
  {
  	CustomButtonClickData *cbc = (CustomButtonClickData *)lParam;
 -	HCONTACT hContact = (HCONTACT)wParam;
 +	MCONTACT hContact = (MCONTACT)wParam;
  	if (!strcmp(cbc->pszModule, MODULE) && cbc->dwButtonId == 1 && hContact) 
  	{
 @@ -292,7 +292,7 @@ int TabsrmmButtonPressed(WPARAM wParam, LPARAM lParam)  	return 0;
  }
 -int UploadFile(HCONTACT hContact, int iFtpNum, GenericJob::EMode mode, void **objects, int objCount, DWORD flags) 
 +int UploadFile(MCONTACT hContact, int iFtpNum, GenericJob::EMode mode, void **objects, int objCount, DWORD flags) 
  {
  	if (!ftpList[iFtpNum]->isValid()) 
  	{
 @@ -334,7 +334,7 @@ int UploadFile(HCONTACT hContact, int iFtpNum, GenericJob::EMode mode, void **ob  	return 0;
  }
 -int UploadFile(HCONTACT hContact, int iFtpNum, GenericJob::EMode mode)
 +int UploadFile(MCONTACT hContact, int iFtpNum, GenericJob::EMode mode)
  {
  	return UploadFile(hContact, iFtpNum, mode, NULL, 0, 0); 
  }
 @@ -363,7 +363,7 @@ INT_PTR ShowManagerService(WPARAM wParam, LPARAM lParam)  INT_PTR ContactMenuService(WPARAM wParam, LPARAM lParam) 
  {
 -	HCONTACT hContact = (HCONTACT)wParam;
 +	MCONTACT hContact = (MCONTACT)wParam;
  	int ftpNum = lParam & (1|2|4);
  	int mode = lParam & (UploadJob::FTP_RAWFILE | UploadJob::FTP_ZIPFILE | UploadJob::FTP_ZIPFOLDER); 
  	return UploadFile(hContact, ftpNum, (UploadJob::EMode)mode);
 diff --git a/plugins/FTPFileYM/src/job_generic.cpp b/plugins/FTPFileYM/src/job_generic.cpp index bfac7ccf79..7035ee6703 100644 --- a/plugins/FTPFileYM/src/job_generic.cpp +++ b/plugins/FTPFileYM/src/job_generic.cpp @@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.  extern UploadDialog *uDlg;
  extern ServerList &ftpList;
 -GenericJob::GenericJob(HCONTACT _hContact, int _iFtpNum, EMode _mode) :
 +GenericJob::GenericJob(MCONTACT _hContact, int _iFtpNum, EMode _mode) :
  	hContact(_hContact),iFtpNum(_iFtpNum),mode(_mode),status(STATUS_CREATED),ftp(ftpList[iFtpNum])
  {
  	this->stzFilePath[0] = 0;
 diff --git a/plugins/FTPFileYM/src/job_generic.h b/plugins/FTPFileYM/src/job_generic.h index 0003045300..61045fb5a7 100644 --- a/plugins/FTPFileYM/src/job_generic.h +++ b/plugins/FTPFileYM/src/job_generic.h @@ -66,7 +66,7 @@ public:  		STATUS_COMPLETED
  	};
 -	HCONTACT hContact;
 +	MCONTACT hContact;
  	int iFtpNum, fileID;
  	ServerList::FTP *ftp;
  	TCHAR stzFilePath[1024];
 @@ -79,7 +79,7 @@ public:  	vector<TCHAR *> files;
  	TCHAR * operator[] (int i) const { return files[i];}
 -	GenericJob(HCONTACT hContact, int iFtpNum, EMode mode);
 +	GenericJob(MCONTACT hContact, int iFtpNum, EMode mode);
  	GenericJob(GenericJob *job);
  	virtual ~GenericJob();
 diff --git a/plugins/FTPFileYM/src/job_packer.cpp b/plugins/FTPFileYM/src/job_packer.cpp index a57d9dc402..26f1bc9ad5 100644 --- a/plugins/FTPFileYM/src/job_packer.cpp +++ b/plugins/FTPFileYM/src/job_packer.cpp @@ -25,7 +25,7 @@ int PackerJob::iRunningJobCount = 0;  extern UploadDialog *uDlg;
  extern Options &opt;
 -PackerJob::PackerJob(HCONTACT _hContact, int _iFtpNum, EMode _mode) :
 +PackerJob::PackerJob(MCONTACT _hContact, int _iFtpNum, EMode _mode) :
  	GenericJob(_hContact, _iFtpNum, _mode),uiFileSize(0),uiReaded(0),lastUpdateTick(0)
  { }
 diff --git a/plugins/FTPFileYM/src/job_packer.h b/plugins/FTPFileYM/src/job_packer.h index 37c7edc055..297f256076 100644 --- a/plugins/FTPFileYM/src/job_packer.h +++ b/plugins/FTPFileYM/src/job_packer.h @@ -46,7 +46,7 @@ private:  	bool isCanceled();
  public:
 -	PackerJob(HCONTACT hContact, int iFtpNum, EMode mode);
 +	PackerJob(MCONTACT hContact, int iFtpNum, EMode mode);
  	virtual ~PackerJob() {};
  	virtual void start();
 diff --git a/plugins/FTPFileYM/src/job_upload.cpp b/plugins/FTPFileYM/src/job_upload.cpp index 2d0a596da9..abe8240f93 100644 --- a/plugins/FTPFileYM/src/job_upload.cpp +++ b/plugins/FTPFileYM/src/job_upload.cpp @@ -25,7 +25,7 @@ int UploadJob::iRunningJobCount = 0;  extern UploadDialog *uDlg;
  extern ServerList &ftpList;
 -UploadJob::UploadJob(HCONTACT _hContact, int _iFtpNum, EMode _mode) :
 +UploadJob::UploadJob(MCONTACT _hContact, int _iFtpNum, EMode _mode) :
  	GenericJob(_hContact, _iFtpNum, _mode),fp(NULL) 
  { 
  	this->szFileLink[0] = 0;
 diff --git a/plugins/FTPFileYM/src/job_upload.h b/plugins/FTPFileYM/src/job_upload.h index 0679773cfd..3e4112befb 100644 --- a/plugins/FTPFileYM/src/job_upload.h +++ b/plugins/FTPFileYM/src/job_upload.h @@ -65,7 +65,7 @@ public:  	char szFileLink[256];
  	static Event jobDone;
 -	UploadJob(HCONTACT _hContact, int _iFtpNum, EMode _mode);
 +	UploadJob(MCONTACT _hContact, int _iFtpNum, EMode _mode);
  	UploadJob(UploadJob *job);
  	UploadJob(PackerJob *job);
  	virtual ~UploadJob();
 diff --git a/plugins/FTPFileYM/src/mir_db.cpp b/plugins/FTPFileYM/src/mir_db.cpp index bf21c1f472..dedd8dc256 100644 --- a/plugins/FTPFileYM/src/mir_db.cpp +++ b/plugins/FTPFileYM/src/mir_db.cpp @@ -18,63 +18,63 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.  #include "common.h"
 -int DB::setByteF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iValue)
 +int DB::setByteF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iValue)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return db_set_b(hContact, szModule, formSet, iValue);
  }
 -int DB::setWordF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iValue)
 +int DB::setWordF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iValue)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return db_set_w(hContact, szModule, formSet, iValue);
  }
 -int DB::setDwordF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iValue)
 +int DB::setDwordF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iValue)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return db_set_dw(hContact, szModule, formSet, iValue);
  }
 -int DB::setAStringF(HCONTACT hContact, char *szModule, char *szSetting, int id, char *szValue)
 +int DB::setAStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, char *szValue)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return db_set_s(hContact, szModule, formSet, szValue);
  }
 -int DB::setStringF(HCONTACT hContact, char *szModule, char *szSetting, int id, TCHAR *stzValue)
 +int DB::setStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, TCHAR *stzValue)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return db_set_ts(hContact, szModule, formSet, stzValue);
  }
 -int DB::getByteF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue)
 +int DB::getByteF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return db_get_b(hContact, szModule, formSet, iErrorValue);
  }
 -int DB::getWordF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue)
 +int DB::getWordF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return db_get_w(hContact, szModule, formSet, iErrorValue);
  }
 -int DB::getDwordF(HCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue)
 +int DB::getDwordF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return db_get_dw(hContact, szModule, formSet, iErrorValue);
  }
 -int DB::getAString(HCONTACT hContact, char *szModule, char *szSetting, char *buff)
 +int DB::getAString(MCONTACT hContact, char *szModule, char *szSetting, char *buff)
  {
  	DBVARIANT dbv;
  	if (!db_get_s(hContact, szModule, szSetting, &dbv))
 @@ -88,14 +88,14 @@ int DB::getAString(HCONTACT hContact, char *szModule, char *szSetting, char *buf  	return 1;
  }
 -int DB::getAStringF(HCONTACT hContact, char *szModule, char *szSetting, int id, char *buff)
 +int DB::getAStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, char *buff)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return getAString(hContact, szModule, formSet, buff);
  }
 -int DB::getString(HCONTACT hContact, char *szModule, char *szSetting, TCHAR *buff)
 +int DB::getString(MCONTACT hContact, char *szModule, char *szSetting, TCHAR *buff)
  {
  	DBVARIANT dbv;
  	if (!db_get_ts(hContact, szModule, szSetting, &dbv))
 @@ -109,14 +109,14 @@ int DB::getString(HCONTACT hContact, char *szModule, char *szSetting, TCHAR *buf  	return 1;
  }
 -int DB::getStringF(HCONTACT hContact, char *szModule, char *szSetting, int id, TCHAR *buff)
 +int DB::getStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, TCHAR *buff)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
  	return getString(hContact, szModule, formSet, buff);
  }
 -int DB::deleteSettingF(HCONTACT hContact, char *szModule, char *szSetting, int id)
 +int DB::deleteSettingF(MCONTACT hContact, char *szModule, char *szSetting, int id)
  {
  	char formSet[256];
  	mir_snprintf(formSet, sizeof(formSet), szSetting, id);
 diff --git a/plugins/FTPFileYM/src/mir_db.h b/plugins/FTPFileYM/src/mir_db.h index e5175fdc0a..aeceb31576 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(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 setByteF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iValue);
 +	static int setWordF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iValue);
 +	static int setDwordF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iValue);
 -	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 setAStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, char *szValue);
 +	static int setStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, TCHAR *stzValue);
 -	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);
 +	static int getByteF(MCONTACT hContact, char *szModule, char *szSetting, int id, int iErrorValue = -1);
 +	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(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 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, TCHAR *buff);
 +	static int getStringF(MCONTACT hContact, char *szModule, char *szSetting, int id, TCHAR *buff);
 -	static int deleteSettingF(HCONTACT hContact, char *szModule, char *szSetting, int id);
 +	static int deleteSettingF(MCONTACT hContact, char *szModule, char *szSetting, int id);
  };
  | 
