Skip to content
/ rust-dll-bp Public template

🔭 A boiler plate code to create dynamic link library in rust.

License

Notifications You must be signed in to change notification settings

pseuxide/rust-dll-bp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔭 rust-dll-bp

This is a boiler plate code that will be generated as a dll binary. I personally cache this here for me but if you're intend to create game hack, having this is great to begin with.

You can inject this to running process without any issues.

toy-arms crate

This crate consists of winapi crate only. However, there is an example which uses toy-arms crate that eases developing dll in examples directory.

⚠️ important

.cargo/config.toml is the config file specifying target architecture. Inside it must be like this:

[build]
target = "i686-pc-windows-msvc"

Make sure to change target value as which architecture you're targeting to.

target remarkable
i686-pc-windows-msvc 32-bit MSVC (Windows 7+)
x86_64-pc-windows-msvc 64-bit MSVC (Windows 7+)
i686-pc-windows-gnu 32-bit MinGW (Windows 7+)
x86_64-pc-windows-gnu 64-bit MinGW (Windows 7+)

About

🔭 A boiler plate code to create dynamic link library in rust.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published

Languages