docs fixed

This commit is contained in:
goat 2023-09-23 10:39:29 +02:00
parent eb2a5f36f9
commit 1304c54eff
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
2 changed files with 5 additions and 3 deletions

View file

@ -34,13 +34,15 @@ public interface IGameInteropProvider
/// <summary>
/// Initialize <see cref="Hook{T}"/> members decorated with the <see cref="SignatureAttribute"/>.
/// Initialize any delegate members decorated with the <see cref="SignatureAttribute"/>.
/// Fill out any IntPtr members decorated with the <see cref="SignatureAttribute"/> with the resolved address.
/// Errors for fallible signatures will be logged.
/// </summary>
/// <param name="self">The object to initialize.</param>
public void InitializeFromAttributes(object self);
/// <summary>
/// Creates a hook by rewriting import table address.
/// Creates a hook by replacing the original address with an address pointing to a newly created jump to the detour.
/// </summary>
/// <param name="address">A memory address to install a hook.</param>
/// <param name="detour">Callback function. Delegate must have a same original function prototype.</param>