[c++] 将 dll 放入程序中?
我不希望我的程序使用 .dll 文件。这个程序需要msvcr100.dll:
或者在exe中嵌入dll
#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;
}