+ Removed mess from project files

+ Project files for VS 2012
This commit is contained in:
Ladislav Zezula
2013-04-02 13:46:00 +02:00
parent 1624e324de
commit 6c26fe38db
12 changed files with 4518 additions and 17202 deletions

View File

@@ -743,7 +743,6 @@ static bool BaseHttp_Read(
TCHAR szRangeRequest[0x80];
DWORD dwStartOffset = (DWORD)ByteOffset;
DWORD dwEndOffset = dwStartOffset + dwBytesToRead;
BYTE Buffer[0x200];
// Open HTTP request to the file
szFileName = BaseHttp_ExtractServerName(pStream->szFileName, NULL);
@@ -764,8 +763,8 @@ static bool BaseHttp_Read(
DWORD dwBlockBytesRead = 0;
// Read the block from the file
if(dwBlockBytesToRead > sizeof(Buffer))
dwBlockBytesToRead = sizeof(Buffer);
if(dwBlockBytesToRead > 0x200)
dwBlockBytesToRead = 0x200;
InternetReadFile(hRequest, pbBuffer, dwBlockBytesToRead, &dwBlockBytesRead);
// Check for end