/* * ReactOS kernel * Copyright (C) 2002 ReactOS Team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* $Id$ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel * FILE: services/eventlog/eventlog.c * PURPOSE: Event logging service * PROGRAMMER: Eric Kohl */ /* INCLUDES *****************************************************************/ #define UNICODE #define NTOS_MODE_USER #include #include #include "eventlog.h" #define DBG #define NDEBUG #include /* GLOBALS ******************************************************************/ /* FUNCTIONS *****************************************************************/ void PrintString(char* fmt,...) { char buffer[512]; va_list ap; va_start(ap, fmt); vsprintf(buffer, fmt, ap); va_end(ap); OutputDebugStringA(buffer); } VOID CALLBACK ServiceMain(DWORD argc, LPTSTR *argv) { PrintString("ServiceMain() called\n"); PrintString("ServiceMain() done\n"); } int main(int argc, char *argv[]) { SERVICE_TABLE_ENTRY ServiceTable[2] = {{L"EventLog", ServiceMain}, {NULL, NULL}}; HANDLE hEvent; // NTSTATUS Status; #if 0 PrintString("EventLog started\n"); #endif StartServiceCtrlDispatcher(ServiceTable); #if 0 PrintString("StartServiceCtrlDispatcher() done\n"); #endif #if 0 if (StartPortThread() == FALSE) { PrintString("StartPortThread() failed\n"); } #endif #if 0 PrintString("EventLog waiting\n"); #endif hEvent = CreateEvent(NULL, TRUE, FALSE, NULL); WaitForSingleObject(hEvent, INFINITE); #if 0 PrintString("EventLog done\n"); #endif ExitThread(0); return(0); } /* EOF */