https://github.com/untrustedmodders/plugify-plugin-dyncall
Dyncall C++ Plugin
https://github.com/untrustedmodders/plugify-plugin-dyncall
calling-library plugify plugify-plugin plugin
Last synced: about 1 month ago
JSON representation
Dyncall C++ Plugin
- Host: GitHub
- URL: https://github.com/untrustedmodders/plugify-plugin-dyncall
- Owner: untrustedmodders
- License: mit
- Created: 2024-02-27T19:05:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-03-10T19:19:05.000Z (3 months ago)
- Last Synced: 2026-03-11T00:28:31.891Z (3 months ago)
- Topics: calling-library, plugify, plugify-plugin, plugin
- Language: C++
- Homepage: https://api.plugify.net?file=https://raw.githubusercontent.com/untrustedmodders/plugify-plugin-dynhook/refs/heads/main/plugify-plugin-dyncall.pplugin.in
- Size: 322 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# DynCall Plugify Plugin
The dyncall library encapsulates architecture-, OS- and compiler-specific function call semantics in a virtual bind argument parameters from left to right and then call interface allowing programmers to call C functions in a completely dynamic manner. In other words, instead of calling a function directly, the dyncall library provides a mechanism to push the function parameters manually and to issue the call afterwards.
This means, that a program can determine at runtime what function to call, and what parameters to pass to it. The library is written in C and assembly and provides a very simple C interface to program against.
[dyncall.org](https://dyncall.org/)