diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-31 18:28:09 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-31 18:28:09 +0000 |
commit | 29c9f860fa28228dac98f810f0305a6d74f8a7f5 (patch) | |
tree | fc0afb581b297185544ce8b813a69c81c21619c8 /plugins/SMS/src | |
parent | 1a1ad1b654d6635913d565890d313d05ee6aa1ab (diff) |
sms: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14768 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SMS/src')
-rw-r--r-- | plugins/SMS/src/SMS_svc.cpp | 2 | ||||
-rw-r--r-- | plugins/SMS/src/functions.cpp | 2 | ||||
-rw-r--r-- | plugins/SMS/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/SMS/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/SMS/src/receive.cpp | 2 | ||||
-rw-r--r-- | plugins/SMS/src/recvdlg.cpp | 2 | ||||
-rw-r--r-- | plugins/SMS/src/send.cpp | 2 | ||||
-rw-r--r-- | plugins/SMS/src/senddlg.cpp | 2 | ||||
-rw-r--r-- | plugins/SMS/src/stdafx.cxx (renamed from plugins/SMS/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/SMS/src/stdafx.h (renamed from plugins/SMS/src/common.h) | 2 |
10 files changed, 9 insertions, 11 deletions
diff --git a/plugins/SMS/src/SMS_svc.cpp b/plugins/SMS/src/SMS_svc.cpp index 323e08f1d5..6fb8511a84 100644 --- a/plugins/SMS/src/SMS_svc.cpp +++ b/plugins/SMS/src/SMS_svc.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
int LoadServices(void)
{
diff --git a/plugins/SMS/src/functions.cpp b/plugins/SMS/src/functions.cpp index 440f08d8f9..95c1f2910b 100644 --- a/plugins/SMS/src/functions.cpp +++ b/plugins/SMS/src/functions.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
BOOL DB_GetStaticStringW(MCONTACT hContact,LPSTR lpszModule,LPSTR lpszValueName,LPWSTR lpwszRetBuff,size_t dwRetBuffSize,size_t *pdwRetBuffSize)
{// sizes in wchars
diff --git a/plugins/SMS/src/main.cpp b/plugins/SMS/src/main.cpp index e670a6fbb2..4d741bdba6 100644 --- a/plugins/SMS/src/main.cpp +++ b/plugins/SMS/src/main.cpp @@ -25,7 +25,7 @@ All the information needed you can find at www.nuke007.tk Enjoy the code and use it smartly!
*/
-#include "common.h"
+#include "stdafx.h"
CLIST_INTERFACE *pcli;
int hLangpack;
diff --git a/plugins/SMS/src/options.cpp b/plugins/SMS/src/options.cpp index f4faad168b..2d59221d13 100644 --- a/plugins/SMS/src/options.cpp +++ b/plugins/SMS/src/options.cpp @@ -25,7 +25,7 @@ All the information needed you can find at www.nuke007.tk Enjoy the code and use it smartly!
*/
-#include "common.h"
+#include "stdafx.h"
WORD wSMSSignControlsList[] = { IDC_BEGIN, IDC_END, IDC_SIGNATURE, IDC_SIGNGROUP };
diff --git a/plugins/SMS/src/receive.cpp b/plugins/SMS/src/receive.cpp index 949f2f89b7..f43a8c9fd9 100644 --- a/plugins/SMS/src/receive.cpp +++ b/plugins/SMS/src/receive.cpp @@ -25,7 +25,7 @@ All the information needed you can find at www.nuke007.tk Enjoy the code and use it smartly!
*/
-#include "common.h"
+#include "stdafx.h"
//This function handles the ACK received from that hooked.
int handleAckSMS(WPARAM wParam, LPARAM lParam)
diff --git a/plugins/SMS/src/recvdlg.cpp b/plugins/SMS/src/recvdlg.cpp index f101df922b..14b28bddbb 100644 --- a/plugins/SMS/src/recvdlg.cpp +++ b/plugins/SMS/src/recvdlg.cpp @@ -25,7 +25,7 @@ All the information needed you can find at www.nuke007.tk Enjoy the code and use it smartly!
*/
-#include "common.h"
+#include "stdafx.h"
//Defnition needed to the SMS window list
typedef struct
diff --git a/plugins/SMS/src/send.cpp b/plugins/SMS/src/send.cpp index f07fb812b4..c0ab45f149 100644 --- a/plugins/SMS/src/send.cpp +++ b/plugins/SMS/src/send.cpp @@ -25,7 +25,7 @@ All the information needed you can find at www.nuke007.tk Enjoy the code and use it smartly!
*/
-#include "common.h"
+#include "stdafx.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)
diff --git a/plugins/SMS/src/senddlg.cpp b/plugins/SMS/src/senddlg.cpp index 63d353bdc2..994cb83d8e 100644 --- a/plugins/SMS/src/senddlg.cpp +++ b/plugins/SMS/src/senddlg.cpp @@ -25,7 +25,7 @@ All the information needed you can find at www.nuke007.tk Enjoy the code and use it smartly!
*/
-#include "common.h"
+#include "stdafx.h"
#define TIMERID_MSGSEND 0
#define TIMEDOUT_CANCEL 0
diff --git a/plugins/SMS/src/stdafx.cpp b/plugins/SMS/src/stdafx.cxx index c5fe5abaad..6fb37564b7 100644 --- a/plugins/SMS/src/stdafx.cpp +++ b/plugins/SMS/src/stdafx.cxx @@ -15,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "common.h"
\ No newline at end of file +#include "stdafx.h"
\ No newline at end of file diff --git a/plugins/SMS/src/common.h b/plugins/SMS/src/stdafx.h index 5eae581d27..245a2f20e2 100644 --- a/plugins/SMS/src/common.h +++ b/plugins/SMS/src/stdafx.h @@ -4,8 +4,6 @@ #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define VC_EXTRALEAN
-#define _CRT_SECURE_NO_WARNINGS
-
#include <windows.h>
#include <commctrl.h>
#include <malloc.h>
|