diff options
author | Maciej Wycik <makar@poczta.of.pl> | 2013-06-03 11:14:59 +0000 |
---|---|---|
committer | Maciej Wycik <makar@poczta.of.pl> | 2013-06-03 11:14:59 +0000 |
commit | de9cbaa3b7e815a2a95e894e796196bf5629543d (patch) | |
tree | c2dbe4d2d241d580fc43e238fb5689f1d887aa83 /plugins/ConnectionNotify/src/ConnectionNotify.h | |
parent | f9944b07bb7623a9c27802c5e83d5f0e3f0e8597 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@4869 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ConnectionNotify/src/ConnectionNotify.h')
-rw-r--r-- | plugins/ConnectionNotify/src/ConnectionNotify.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/ConnectionNotify/src/ConnectionNotify.h b/plugins/ConnectionNotify/src/ConnectionNotify.h new file mode 100644 index 0000000000..d60e8d0cef --- /dev/null +++ b/plugins/ConnectionNotify/src/ConnectionNotify.h @@ -0,0 +1,13 @@ +
+#if !defined(MIID_CONNECTIONNOTIFY)
+ #define MIID_CONNECTIONNOTIFY {0x4bb5b4aa, 0xc364, 0x4f23, { 0x97, 0x46, 0xd5, 0xb7, 0x8, 0xa2, 0x86, 0xa5 } }
+#endif
+// 4BB5B4AA-C364-4F23-9746-D5B708A286A5
+
+
+void showMsg(TCHAR *pName,DWORD pid,TCHAR *intIp,TCHAR *extIp,int intPort,int extPort,int state);
+//int __declspec(dllexport) Load(PLUGINLINK *link);
+extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
+static unsigned __stdcall checkthread(void *dummy);
+struct CONNECTION * LoadSettingsConnections();
+void saveSettingsConnections(struct CONNECTION *connHead);
|