PDL3 part 2
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user