infile = "C:\Temp\file1.txt"
procfile = "C:\Temp\procfile1.txt"
sect = "[PlaceHolder]"
sectin = StrCat (sect, @crlf)
fs1 = FileSize (infile)
buf1 = BinaryAlloc (fs1+100)
binaryread (buf1, infile)
binarypokestr (buf1, 0, sectin)
binarywrite (buf1, procfile)
binaryfree (buf1)