mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
- Compilation fixes.
svn path=/trunk/; revision=8339
This commit is contained in:
parent
8c1f187f6e
commit
b320e099ed
3 changed files with 4 additions and 4 deletions
|
@ -315,7 +315,7 @@ VOID CHttpClient::OnWrite()
|
||||||
DWORD nBytesToRead;
|
DWORD nBytesToRead;
|
||||||
DWORD nBytesRead;
|
DWORD nBytesRead;
|
||||||
|
|
||||||
OutputDebugString(_T("Can write\n"));
|
OutputDebugString(TS("Can write\n"));
|
||||||
|
|
||||||
if (bSendingFile) {
|
if (bSendingFile) {
|
||||||
if (nTotalRead + nBufferSize < nFileSize)
|
if (nTotalRead + nBufferSize < nFileSize)
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
#define TS(x) (LPTSTR)_T(x)
|
#define TS(x) (LPTSTR)TEXT(x)
|
||||||
|
|
||||||
void ReportErrorStr(LPTSTR lpsText);
|
void ReportErrorStr(LPTSTR lpsText);
|
||||||
|
|
||||||
|
|
|
@ -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 = ../../../..
|
PATH_TO_TOP = ../../../..
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ TARGET_APPTYPE = console
|
||||||
|
|
||||||
TARGET_NAME = roshttpd
|
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++
|
TARGET_GCCLIBS = stdc++
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue