PDL3 part 2

This commit is contained in:
nastys
2021-07-22 04:35:52 +02:00
parent adb5c02256
commit 362b28da6e
22 changed files with 1582 additions and 295 deletions
@@ -0,0 +1,13 @@
#include <fstream>
using namespace std;
void writeTemplate(char* cfgtemplate, const wchar_t* filename)
{
ofstream out;
out.open(filename);
out << cfgtemplate;
out.close();
return;
}