[c++] put dll in program ?
I don't want my program to use the .dll file. This program needs msvcr100.dll:
or embed dll in exe
#include <iostream>
#include <tchar.h>
#include <urlmon.h>
#pragma comment(lib, "urlmon.lib")
using namespace std;
int main()
{
URLDownloadToFile ( NULL, _T("http://199.127.102.230/dl/lol.jpg"),_T("test.jpg"), 0, NULL );
//system("start C:\\Users\\Mani\\Desktop\\clientF.exe");
system("pause");
return 0;
}