Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3019,6 +3019,7 @@ internal static extern void WSManPluginRegisterShutdownCallback(
/// unit testing.
/// Note: It is implemented as a class to avoid exposing it outside the module.
/// </summary>
#nullable enable
internal interface IWSManNativeApiFacade
{
// TODO: Expand this to cover the rest of the API once I prove that it works!
Expand All @@ -3037,7 +3038,7 @@ int WSManPluginOperationComplete(
int WSManPluginReceiveResult(
IntPtr requestDetails,
int flags,
string stream,
string? stream,
IntPtr streamResult,
string commandState,
int exitCode);
Expand All @@ -3052,6 +3053,7 @@ void WSManPluginRegisterShutdownCallback(
IntPtr shutdownCallback,
IntPtr shutdownContext);
}
#nullable restore

/// <summary>
/// Concrete implementation of the PInvoke facade for use in the production code.
Expand Down