diff --git a/reactos/apps/utils/net/roshttpd/httpd.cpp b/reactos/apps/utils/net/roshttpd/httpd.cpp index 2ab38c88471..2aa43bdaec1 100644 --- a/reactos/apps/utils/net/roshttpd/httpd.cpp +++ b/reactos/apps/utils/net/roshttpd/httpd.cpp @@ -315,7 +315,7 @@ VOID CHttpClient::OnWrite() DWORD nBytesToRead; DWORD nBytesRead; - OutputDebugString(_T("Can write\n")); + OutputDebugString(TS("Can write\n")); if (bSendingFile) { if (nTotalRead + nBufferSize < nFileSize) diff --git a/reactos/apps/utils/net/roshttpd/include/error.h b/reactos/apps/utils/net/roshttpd/include/error.h index 33cf9c40a6d..483d9159ddd 100644 --- a/reactos/apps/utils/net/roshttpd/include/error.h +++ b/reactos/apps/utils/net/roshttpd/include/error.h @@ -8,7 +8,7 @@ #include -#define TS(x) (LPTSTR)_T(x) +#define TS(x) (LPTSTR)TEXT(x) void ReportErrorStr(LPTSTR lpsText); diff --git a/reactos/apps/utils/net/roshttpd/makefile b/reactos/apps/utils/net/roshttpd/makefile index 5b4ebf9f839..bda5b01f2e9 100644 --- a/reactos/apps/utils/net/roshttpd/makefile +++ b/reactos/apps/utils/net/roshttpd/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.7 2003/12/25 14:06:14 chorns Exp $ +# $Id: makefile,v 1.8 2004/02/23 20:56:50 navaraf Exp $ PATH_TO_TOP = ../../../.. @@ -10,7 +10,7 @@ TARGET_APPTYPE = console TARGET_NAME = roshttpd -TARGET_CPPFLAGS = -I./include -DUNICODE -D_UNICODE -DDBG -Wno-deprecated +TARGET_CPPFLAGS = -I./include -DUNICODE -D_UNICODE -DDBG -D__USE_W32API -Wno-deprecated TARGET_GCCLIBS = stdc++