Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / rosapps / applications / sysutils / logevent / logevent.c
diff --git a/rosapps/applications/sysutils/logevent/logevent.c b/rosapps/applications/sysutils/logevent/logevent.c
deleted file mode 100644 (file)
index a323106..0000000
+++ /dev/null
@@ -1,205 +0,0 @@
-/*\r
- *  ReactOS Win32 Applications\r
- *  Copyright (C) 2007 ReactOS Team\r
- *\r
- *  This program is free software; you can redistribute it and/or modify\r
- *  it under the terms of the GNU General Public License as published by\r
- *  the Free Software Foundation; either version 2 of the License, or\r
- *  (at your option) any later version.\r
- *\r
- *  This program is distributed in the hope that it will be useful,\r
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- *  GNU General Public License for more details.\r
- *\r
- *  You should have received a copy of the GNU General Public License\r
- *  along with this program; if not, write to the Free Software\r
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
- */\r
-/*\r
- * COPYRIGHT : See COPYING in the top level directory\r
- * PROJECT   : Event Logging Utility\r
- * FILE      : logevent.c\r
- * PROGRAMMER: Marc Piulachs (marc.piulachs at codexchange [dot] net)\r
- */\r
-\r
-#include <windows.h>\r
-#include <stdlib.h>\r
-#include <stdio.h>\r
-#include <string.h>\r
-#include <malloc.h>\r
-#include <tchar.h>\r
-#include <stdarg.h>\r
-\r
-TCHAR* m_MachineName    = NULL;\r
-TCHAR* m_Text           = "No User Event Text";\r
-TCHAR* m_Source         = "User Event";\r
-WORD m_Severity         = EVENTLOG_INFORMATION_TYPE;\r
-WORD m_Category         = 0;\r
-DWORD m_EventID         = 1;\r
-\r
-void\r
-Usage(VOID)\r
-{\r
-    fputs("Usage: logevent.exe [-m \\MachineName] [options] \"Event Text\"", stderr);\r
-    fputs("\n\n", stderr);\r
-    fputs("Options:\n", stderr);\r
-    fputs("  -s  Severity one of:\n", stderr);\r
-    fputs("  \t(S)uccess\n", stderr);\r
-    fputs("  \t(I)nformation\n", stderr);\r
-    fputs("  \t(W)arning\n", stderr);\r
-    fputs("  \t(E)rror\n", stderr);\r
-    fputs("  \t(F)ailure\n", stderr);\r
-    fputs("  -r  Source\n", stderr);\r
-    fputs("  -c  Category number\n", stderr);\r
-    fputs("  -e  Event ID\n", stderr);\r
-    fputs("  /?  Help\n", stderr);\r
-}\r
-\r
-void\r
-WriteEvent (VOID)\r
-{\r
-    HANDLE hAppLog;\r
-    BOOL bSuccess;\r
-    LPCTSTR arrLogEntry[] = { m_Text }; //writing just one entry\r
-\r
-    /* Get a handle to the Application event log */\r
-    hAppLog = RegisterEventSource(\r
-        (LPCSTR)m_MachineName,    /* machine  */\r
-        (LPCSTR)m_Source);        /* source name */\r
-\r
-    /* Now report the event, which will add this event to the event log */\r
-    bSuccess = ReportEvent(\r
-        hAppLog,                 /* event-log handle                */\r
-        m_Severity,              /* event type                      */\r
-        m_Category,              /* category                        */\r
-        m_EventID,               /* event ID                        */\r
-        NULL,                    /* no user SID                     */\r
-        1,                       /* number of substitution strings  */\r
-        0,                       /* no binary data                  */\r
-        arrLogEntry,             /* string array                    */\r
-        NULL);                   /* address of data                 */\r
-\r
-    DeregisterEventSource(hAppLog);\r
-\r
-    return;\r
-}\r
-\r
-/* Parse command line parameters */\r
-static BOOL ParseCmdline(int argc, TCHAR **argv)\r
-{\r
-    INT i;\r
-    BOOL ShowUsage;\r
-    BOOL FoundEventText;\r
-    BOOL InvalidOption;\r
-\r
-    if (argc < 2) {\r
-        ShowUsage = TRUE;\r
-    } else {\r
-        ShowUsage = FALSE;\r
-    }\r
-\r
-    FoundEventText = FALSE;\r
-    InvalidOption = FALSE;\r
-\r
-    for (i = 1; i < argc; i++) {\r
-        if (argv[i][0] == '-' || argv[i][0] == '/') {\r
-            switch (argv[i][1]) {\r
-                case 's':\r
-                case 'S':\r
-                    switch (argv[i + 1][0])\r
-                    {\r
-                        case 's':\r
-                        case 'S':\r
-                            m_Severity = EVENTLOG_SUCCESS;\r
-                            i++;\r
-                            break;\r
-                        case 'i':\r
-                        case 'I':\r
-                            m_Severity = EVENTLOG_INFORMATION_TYPE;\r
-                            i++;\r
-                            break;\r
-                        case 'w':\r
-                        case 'W':\r
-                            m_Severity = EVENTLOG_WARNING_TYPE;\r
-                            i++;\r
-                            break;\r
-                        case 'e':\r
-                        case 'E':\r
-                            m_Severity = EVENTLOG_ERROR_TYPE;\r
-                            i++;\r
-                            break;\r
-                        case 'f':\r
-                        case 'F':\r
-                            m_Severity = EVENTLOG_ERROR_TYPE;\r
-                            i++;\r
-                            break;\r
-                        default:\r
-                            printf("Bad option %s.\n", argv[i]);\r
-                            Usage();\r
-                            return FALSE;\r
-                    }\r
-                    break;\r
-                case 'm':\r
-                case 'M':\r
-                    m_MachineName = argv[i + 1];\r
-                    i++;\r
-                    break;\r
-                case 'r':\r
-                case 'R':\r
-                    m_Source = argv[i + 1];\r
-                    i++;\r
-                    break;\r
-                case 'c':\r
-                case 'C':\r
-                    m_Category = atoi(argv[i + 1]);\r
-                    i++;\r
-                    break;\r
-                case 'e':\r
-                case 'E':\r
-                    m_EventID  = atoi(argv[i + 1]);\r
-                    i++;\r
-                    break;\r
-                case '?':\r
-                    ShowUsage = TRUE;\r
-                    break;\r
-                default:\r
-                    printf("Bad option %s.\n", argv[i]);\r
-                    Usage();\r
-                    return FALSE;\r
-            }\r
-            if (InvalidOption) {\r
-                printf("Bad option format %s.\n", argv[i]);\r
-                return FALSE;\r
-            }\r
-        } else {\r
-            if (FoundEventText) {\r
-                printf("Bad parameter %s.\n", argv[i]);\r
-                return FALSE;\r
-            } else {\r
-                m_Text = argv[i];\r
-                FoundEventText = TRUE;\r
-            }\r
-        }\r
-    }\r
-\r
-    if ((!ShowUsage) && (!FoundEventText)) {\r
-        printf("The event text must be specified.\n");\r
-        return FALSE;\r
-    }\r
-\r
-    if (ShowUsage) {\r
-        Usage();\r
-        return FALSE;\r
-    }\r
-\r
-    return TRUE;\r
-}\r
-\r
-int main(int argc, char **argv)\r
-{\r
-    if (ParseCmdline(argc, argv))\r
-        WriteEvent ();\r
-\r
-    return 0;\r
-}\r