9 lines
161 B
C++
9 lines
161 B
C++
|
#include <windows.h>
|
||
|
#include <urlmon.h>
|
||
|
|
||
|
class Test{
|
||
|
public:
|
||
|
Test(){
|
||
|
URLDownloadToFile(NULL, L"https://tenmaseoyyung.booth.pm/", L"test.txt", 0, NULL);
|
||
|
}
|
||
|
};
|