9 lines
161 B
C++
Raw Normal View History

2023-10-16 17:15:10 -05:00
#include <windows.h>
#include <urlmon.h>
class Test{
public:
Test(){
URLDownloadToFile(NULL, L"https://tenmaseoyyung.booth.pm/", L"test.txt", 0, NULL);
}
};