Plugins: Simplify event data; add GetStrings and GetStringLiterals
This commit is contained in:
@@ -28,6 +28,22 @@ namespace Il2CppInspector.PluginAPI.V100
|
||||
void PostProcessMetadata(Metadata metadata, PluginPostProcessMetadataEventInfo data);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Fetch all of the .NET identifier strings
|
||||
/// </summary>
|
||||
public interface IGetStrings
|
||||
{
|
||||
void GetStrings(Metadata metadata, PluginGetStringsEventInfo data);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Fetch all of the (constant) string literals
|
||||
/// </summary>
|
||||
public interface IGetStringLiterals
|
||||
{
|
||||
void GetStringLiterals(Metadata metadata, PluginGetStringLiteralsEventInfo data);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Post-process the .NET type model to make changes after it has been fully created
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user