File tree Expand file tree Collapse file tree
src/System.Management.Automation/engine/COM Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55
66using COM = System . Runtime . InteropServices . ComTypes ;
77
8+ #nullable enable
89namespace System . Management . Automation
910{
1011 /// <summary>
@@ -19,7 +20,7 @@ internal interface IDispatch
1920 int GetTypeInfoCount ( out int info ) ;
2021
2122 [ PreserveSig ]
22- int GetTypeInfo ( int iTInfo , int lcid , out COM . ITypeInfo ppTInfo ) ;
23+ int GetTypeInfo ( int iTInfo , int lcid , out COM . ITypeInfo ? ppTInfo ) ;
2324
2425 void GetIDsOfNames (
2526 [ MarshalAs ( UnmanagedType . LPStruct ) ] Guid iid ,
@@ -34,7 +35,7 @@ void Invoke(
3435 int lcid ,
3536 COM . INVOKEKIND wFlags ,
3637 [ In , Out ] [ MarshalAs ( UnmanagedType . LPArray ) ] COM . DISPPARAMS [ ] paramArray ,
37- out object pVarResult ,
38+ out object ? pVarResult ,
3839 out ComInvoker . EXCEPINFO pExcepInfo ,
3940 out uint puArgErr ) ;
4041 }
You can’t perform that action at this time.
0 commit comments