summaryrefslogtreecommitdiff
path: root/plugins/NotifyAnything/sendlog/SendLogWin.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-02-10 19:26:03 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-02-10 19:26:03 +0000
commit271cf1987ef0dc4d6561d14e0ba89c17bb125903 (patch)
treeef7d07417ad78bb9701dee50ee5877f044f8fde4 /plugins/NotifyAnything/sendlog/SendLogWin.cpp
parente8688ad378c46c963c66fa6a4c09b9419e02efc0 (diff)
NotifyAnything plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@3539 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotifyAnything/sendlog/SendLogWin.cpp')
-rw-r--r--plugins/NotifyAnything/sendlog/SendLogWin.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/NotifyAnything/sendlog/SendLogWin.cpp b/plugins/NotifyAnything/sendlog/SendLogWin.cpp
new file mode 100644
index 0000000000..37f112efb8
--- /dev/null
+++ b/plugins/NotifyAnything/sendlog/SendLogWin.cpp
@@ -0,0 +1,30 @@
+#include <windows.h>
+#include <winsock.h>
+
+#include <iostream>
+#include <string>
+
+void implementation(int argc, char **argv, bool console);
+
+int main(int argc, char **argv)
+try
+{
+ if (argc == 1 || argc == 2 && !strcmp("/?", argv[1])) {
+ MessageBox(NULL, "Syntax: sendlog32 [-T] [-H host] [-P port] text\n"
+ "\tSends single text message.", "Sendlog32", MB_OK);
+ return 0;
+ }
+
+ implementation(argc, argv, false);
+}
+catch (DWORD err) {
+ LPVOID lpMsgBuf;
+ FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_IGNORE_INSERTS,
+ NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR) &lpMsgBuf, 0, NULL);
+
+ MessageBox(NULL, (LPCTSTR)lpMsgBuf, "sendlog32", MB_OK);
+
+ LocalFree(lpMsgBuf);
+
+ return 1;
+}