diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-04 18:52:10 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-04 18:52:10 +0000 |
commit | a9e2b96e8d4664fddea569f0c233bc0b028555f1 (patch) | |
tree | b55fa82e609cf319873dfafdb8529aff6efcd425 /plugins/NotifyAnything/SendLog/SendLog.cpp | |
parent | 907045128b7dae896d45a40319eb86007df3e36b (diff) |
- SndLog command line compilation method restored
git-svn-id: http://svn.miranda-ng.org/main/trunk@3886 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotifyAnything/SendLog/SendLog.cpp')
-rw-r--r-- | plugins/NotifyAnything/SendLog/SendLog.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/plugins/NotifyAnything/SendLog/SendLog.cpp b/plugins/NotifyAnything/SendLog/SendLog.cpp new file mode 100644 index 0000000000..5cb46932da --- /dev/null +++ b/plugins/NotifyAnything/SendLog/SendLog.cpp @@ -0,0 +1,38 @@ +#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 == 2 && !strcmp("/?", argv[1])) {
+ std::cout << "\n"
+ "Syntax: sendlog [-T] [-H host] [-P port] [-p prefix]\n"
+ "\tSends each input line as a separate message, with optional prefix.\n"
+ "\n"
+ "Syntax: sendlog text\n"
+ "\tSends single text message.\n"
+ "\n"
+ << std::flush;
+ return 0;
+ }
+
+ implementation(argc, argv, true);
+}
+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);
+
+ std::cerr << (LPCTSTR)lpMsgBuf << std::endl;
+ if (!std::cerr)
+ MessageBox(NULL, (LPCTSTR)lpMsgBuf, "sendlog", MB_OK);
+
+ LocalFree(lpMsgBuf);
+
+ return 1;
+}
|