blob: f09e93f628e9a10b61da49891dce63b787d05ec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0" encoding="UTF-8" ?>
<Document>
<Protection InputFileName="Project1.exe" Options="32768" RunParameters="">
<Folders />
<Procedures>
<Procedure MapAddress='VMProtectMarker "Test marker"' Options="1" />
<Procedure MapAddress='string "Correct password"' Options="1" />
<Procedure MapAddress='string "Incorrect password"' Options="1" />
</Procedures>
<Messages />
</Protection>
<DLLBox />
<Script>
<![CDATA[function OnBeforeCompilation()
print("OnBeforeCompilation")
end
function OnAfterCompilation()
print("OnAfterCompilation")
end
function OnAfterSaveFile()
print("OnAfterSaveFile")
end]]>
</Script>
</Document>
|