1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS HTTP Daemon 4 * FILE: error.cpp 5 * PURPOSE: Error reporting 6 * PROGRAMMERS: Casper S. Hornstrup (chorns@users.sourceforge.net) 7 * REVISIONS: 8 * CSH 01/09/2000 Created 9 */ 10 #include <error.h> 11 #include <stdio.h> 12 13 void ReportErrorStr(LPTSTR lpsText) 14 { 15 wprintf((wchar_t*)lpsText); 16 } 17