Reloaded.Injector icon indicating copy to clipboard operation
Reloaded.Injector copied to clipboard

C# DLL Injection Library capable of injecting x86 DLLs to x86 process from x64 processes.

Results 8 Reloaded.Injector issues
Sort by recently updated
recently updated
newest added

At the moment the circular buffer size is hardcoded to 4096: https://github.com/Reloaded-Project/Reloaded.Injector/blob/master/Source/Reloaded.Injector/Injector.cs#L40 Would it be possible to make that an optional parameter for the Injector constructor? I want to use...

The injected DLL is present in loaded DLLs for the target process after calling `Eject()` and `Dispose()` In my case injector app is using the same DLL to access the...

Not sure under which repo this issue should be (related to Reloaded.Memory.Buffers). I am running the following code in a new .NET framework Console App project (4.8) set to x64:...

I am trying to hook Vulkan in an application, and due to how the Vulkan loader works, it doesn't seem possible to hook after the application calls `vkCreateInstance`. ```csharp [X64.Function(X64.CallingConventions.Microsoft)]...

![image](https://user-images.githubusercontent.com/6145349/76143033-c290da80-6073-11ea-99a8-0959d9895ccb.png) This is after injecting into an x64 Unity game with an x64 dll. If I add Assembly-CSharp.dll as a reference in my dll and try to access anything from...

Wait! I'm not crazy, maybe... Take a look into this: http://blog.rewolf.pl/blog/?p=102 I thought in try implement this in C# by me self one day then it's saved in my favorite...

I get the following exception when I create an `Injector` for a suspended process: > **System.ComponentModel.Win32Exception**: 'Only part of a ReadProcessMemory or WriteProcessMemory request was completed' This is the code...

Thanks for a great set of libraries! I was trying to track down various crash/failures with using it and one of the early things I did was update all the...