From 9c62ad6bb204781819184f772992fec768cb4418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Thu, 12 Jul 2012 12:09:32 +0000 Subject: Added SMS (not adopted yet) git-svn-id: http://svn.miranda-ng.org/main/trunk@919 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SMS/send.cpp | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 plugins/SMS/send.cpp (limited to 'plugins/SMS/send.cpp') diff --git a/plugins/SMS/send.cpp b/plugins/SMS/send.cpp new file mode 100644 index 0000000000..fdfc80ffd8 --- /dev/null +++ b/plugins/SMS/send.cpp @@ -0,0 +1,88 @@ +/* +Miranda-IM SMS Plugin +Copyright (C) 2001-2 Richard Hughes +Copyright (C) 2007-2009 Rozhuk Ivan + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +--------------------------------------------------------------------------- + +This was the original words. +This plugin was modified by Ariel Shulman (NuKe007). +For any comments, problems, etc. contact me at Miranda-IM forums or E-Mail or ICQ. +All the information needed you can find at www.nuke007.tk +Enjoy the code and use it smartly! +*/ + +#include "main.h" + + + +//This function gets HWND of the window, the number, and the message. +void StartSmsSend(HWND hWndDlg,SIZE_T dwModuleIndex,LPWSTR lpwszPhone,SIZE_T dwPhoneSize,LPWSTR lpwszMessage,SIZE_T dwMessageSize) +{ + if (ssSMSSettings.ppaSMSAccounts && dwModuleIndex!=-1 && dwModuleIndextimestamp=time(NULL); + pdbei->flags=(DBEF_SENT|DBEF_UTF); + pdbei->eventType=ICQEVENTTYPE_SMS; + pdbei->cbBlob=(mir_snprintf(lpszBuff,dwBuffSize,"SMS To: +%s\r\n%s",szPhone,lpszMessageUTF)+4); + pdbei->pBlob=(PBYTE)lpszBuff; + SendSMSWindowDbeiSet(hWndDlg,pdbei); + + mir_snprintf(szServiceName,sizeof(szServiceName),"%s%s",ssSMSSettings.ppaSMSAccounts[dwModuleIndex]->szModuleName,MS_ICQ_SENDSMS); + if (ServiceExists(szServiceName)) + { + WideCharToMultiByte(CP_UTF8,0,lpwszMessageXMLEncoded,dwMessageXMLEncodedSize,lpszMessageUTF,dwMessageUTFBuffSize,NULL,NULL); + hProcess=(HANDLE)CallService(szServiceName,(WPARAM)szPhone,(LPARAM)lpszMessageUTF); + SendSMSWindowHProcessSet(hWndDlg,hProcess); + }else{ + MEMFREE(pdbei); + } + } + MEMFREE(lpszMessageUTF); + } + MEMFREE(lpwszMessageXMLEncoded); + } + } +} + + + -- cgit v1.2.3