Difference between revisions of "Lua:injectDll"
Jump to navigation
Jump to search
(Created page with ''''function''' injectDll(''pathtodll'') Injects a specific dll into the target process ===Function Parameters=== {|width="85%" cellpadding="10%" cellpadding="5%" cellspacing=…') |
|||
| (3 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
| − | '''function''' | + | [[Category:Lua]] |
| + | '''function''' injectDLL(''pathtodll, skipsymbolreloadwait OPTIONAL'') | ||
Injects a specific dll into the target process | Injects a specific dll into the target process | ||
| − | |||
| Line 14: | Line 14: | ||
|string | |string | ||
|The full path to the dll. If only a filename is given without path, the normal windows search path is used | |The full path to the dll. If only a filename is given without path, the normal windows search path is used | ||
| + | |- | ||
| + | |skipsymbolreloadwait | ||
| + | |bool | ||
|} | |} | ||
| + | == Examples == | ||
| + | injectDLL("C:\\dev\\test.dll") | ||
| − | + | {{LuaSeeAlso}} | |
| − | |||
Latest revision as of 23:42, 16 May 2025
function injectDLL(pathtodll, skipsymbolreloadwait OPTIONAL)
Injects a specific dll into the target process
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| pathtodll | string | The full path to the dll. If only a filename is given without path, the normal windows search path is used |
| skipsymbolreloadwait | bool |
Examples[edit]
injectDLL("C:\\dev\\test.dll")