diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-07-31 22:48:44 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-07-31 22:48:44 +0000 |
commit | a08e1cf9777b4a3766c91be2685aaf37c24fbd4e (patch) | |
tree | 76f00a6a8c26c04d84f1e259fcf4bdf4b984a0d1 /plugins/Toaster/src/stdafx.h | |
parent | aa7b69500fc5ce34840076de537dbfab2c31ab81 (diff) |
Toaster: initial commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@14775 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/stdafx.h')
-rw-r--r-- | plugins/Toaster/src/stdafx.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/Toaster/src/stdafx.h b/plugins/Toaster/src/stdafx.h new file mode 100644 index 0000000000..f22ec15681 --- /dev/null +++ b/plugins/Toaster/src/stdafx.h @@ -0,0 +1,39 @@ +#ifndef _COMMON_H_
+#define _COMMON_H_
+
+#pragma comment(linker,"\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
+
+#include <Windows.h>
+#include <SDKDDKVer.h>
+#include <strsafe.h>
+#include <intsafe.h>
+
+#include <roapi.h>
+#include <wrl\client.h>
+#include <wrl\implements.h>
+#include <windows.ui.notifications.h>
+
+#include <newpluginapi.h>
+#include <m_core.h>
+#include <m_utils.h>
+#include <m_langpack.h>
+#include <m_avatars.h>
+#include <m_protocols.h>
+#include <m_popup.h>
+#include <m_message.h>
+
+#include "version.h"
+#include "resource.h"
+
+typedef void(__cdecl *pEventHandler)(void*);
+const wchar_t AppUserModelID[] = L"MirandaNG";
+
+#include "string_reference_wrapper.h"
+#include "toast_event_handler.h"
+#include "toast_notification.h"
+
+#define MODULE "Toaster"
+
+extern HINSTANCE g_hInstance;
+
+#endif //_COMMON_H_
|