Re: BITS AddFileSet method returns E_INVALIDARG
"NKH" wrote:
I have tried changing the arrays types to wchar_t..Istill come
across the same problem..
I have lately changed the code to look like given below..I have
used LPWSTR to define the arrays source and dest..
I don't have time to debug your code. Here is the simplest
solution for you:
#include "WinInet.h" // for INTERNET_MAX_URL_LENGTH
WCHAR source[3][INTERNET_MAX_URL_LENGTH] = {
L"http://testserver:2034/version.bat",
L"http://testserver:2034/version1.bat",
L"http://testserver:2034/version2.bat"
};
WCHAR dest[3][MAX_PATH] = {
L"D:\\Test\\version.bat",
L"D:\\Test\\version1.bat",
L"D:\\Test\\version2.bat"
};
BG_FILE_INFO fileInfo[3] = { 0 };
for(size_t i = 0; i < ARRAYSIZE(fileInfo); ++i)
{
fileInfo[i].RemoteName = source[i];
fileInfo[i].LocalName = dest[i];
}
pJob->AddFileSet(ARRAYSIZE(fileInfo), fileInfo);
....
However, you should get familiar with pointers and buffers.
Without this knowledge you won't be able to write C++ programs. As
a general rule for the future: don't use casts. If you need to
cast in order to pass compilation, then it is first alert that
something has went wrong. On rare occasions you need to use C++
casts, almost never you should use C-style casts.
HTH
Alex