diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 21:12:42 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 21:12:42 +0000 |
commit | 44d0f35d4e3d74b9814e9a511b6dc55e9fffebc0 (patch) | |
tree | da5c3816288a8abcc7d58fa55602ffe3d65452be /plugins/XSoundNotify/src | |
parent | e88506076286ec7c878231c5362ea5c1bb2b612c (diff) |
XSoundNotify: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14803 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/XSoundNotify/src')
-rw-r--r-- | plugins/XSoundNotify/src/dialog.cpp | 2 | ||||
-rw-r--r-- | plugins/XSoundNotify/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/XSoundNotify/src/stdafx.cxx (renamed from plugins/XSoundNotify/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/XSoundNotify/src/stdafx.h (renamed from plugins/XSoundNotify/src/Common.h) | 2 | ||||
-rw-r--r-- | plugins/XSoundNotify/src/xsn_main.cpp | 2 |
5 files changed, 4 insertions, 6 deletions
diff --git a/plugins/XSoundNotify/src/dialog.cpp b/plugins/XSoundNotify/src/dialog.cpp index f893d65aab..142e178c95 100644 --- a/plugins/XSoundNotify/src/dialog.cpp +++ b/plugins/XSoundNotify/src/dialog.cpp @@ -7,7 +7,7 @@ modify it as they wish with no restriction. There is no warranty.
*/
-#include "Common.h"
+#include "stdafx.h"
static INT_PTR CALLBACK DlgProcContactsOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
diff --git a/plugins/XSoundNotify/src/options.cpp b/plugins/XSoundNotify/src/options.cpp index 3e528ba273..0df84c1e80 100644 --- a/plugins/XSoundNotify/src/options.cpp +++ b/plugins/XSoundNotify/src/options.cpp @@ -7,7 +7,7 @@ modify it as they wish with no restriction. There is no warranty.
*/
-#include "Common.h"
+#include "stdafx.h"
bool IsSuitableProto(PROTOACCOUNT *pa)
{
diff --git a/plugins/XSoundNotify/src/stdafx.cpp b/plugins/XSoundNotify/src/stdafx.cxx index c5fe5abaad..6fb37564b7 100644 --- a/plugins/XSoundNotify/src/stdafx.cpp +++ b/plugins/XSoundNotify/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/XSoundNotify/src/Common.h b/plugins/XSoundNotify/src/stdafx.h index 16a60182fa..6e867669ed 100644 --- a/plugins/XSoundNotify/src/Common.h +++ b/plugins/XSoundNotify/src/stdafx.h @@ -1,5 +1,3 @@ -#define _CRT_SECURE_NO_WARNINGS
-
#include <windows.h>
#include <Shlwapi.h>
diff --git a/plugins/XSoundNotify/src/xsn_main.cpp b/plugins/XSoundNotify/src/xsn_main.cpp index dc23fae00a..baea4559fd 100644 --- a/plugins/XSoundNotify/src/xsn_main.cpp +++ b/plugins/XSoundNotify/src/xsn_main.cpp @@ -7,7 +7,7 @@ modify it as they wish with no restriction. There is no warranty.
*/
-#include "Common.h"
+#include "stdafx.h"
HINSTANCE hInst;
int hLangpack;
|