We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04593f1 commit e77b20aCopy full SHA for e77b20a
1 file changed
README.md
@@ -0,0 +1,22 @@
1
+# RustProxyGen
2
+This project creates a (forwarder) proxy dll rust template.
3
+
4
+# Build
5
+```
6
+cargo build --target=i686-pc-windows-msvc --release
7
8
9
+# Usage
10
11
+rustproxygen.exe <Path/To/DllFile>
12
13
+Make sure you have copied the export.rs and template.rs into the same location as the rustproxygen.exe file.
14
15
+# Example
16
17
+rustproxygen.exe C:\temp\test_dll.dll
18
+ Proxying C:\temp\test_dll.dll
19
+ Parsed an x86 PE file
20
+ Found 3 exported functions
21
+ Wrote proxy dll template to .\proxy.rs
22
0 commit comments