summaryrefslogtreecommitdiffstats
path: root/contrib/mingw/filewrite.nsi
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/mingw/filewrite.nsi')
-rw-r--r--contrib/mingw/filewrite.nsi5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/mingw/filewrite.nsi b/contrib/mingw/filewrite.nsi
new file mode 100644
index 0000000000..e18a46fce3
--- /dev/null
+++ b/contrib/mingw/filewrite.nsi
@@ -0,0 +1,5 @@
+!macro FILE_WRITE_LINE Handle Text
+ FileWrite ${Handle} `${Text}`
+ FileWriteByte ${Handle} "13"
+ FileWriteByte ${Handle} "10"
+!macroend