File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -252,10 +252,10 @@ public static partial class UioHook
252252#if NET7_0_OR_GREATER
253253 [ LibraryImport ( LibUioHook , EntryPoint = "hook_post_events" ) ]
254254 [ UnmanagedCallConv ( CallConvs = [ typeof ( CallConvCdecl ) ] ) ]
255- public static partial UioHookResult PostEvents ( UioHookEvent [ ] events , uint size ) ;
255+ public static partial UioHookResult PostEvents ( [ In ] UioHookEvent [ ] events , uint size ) ;
256256#else
257257 [ DllImport ( LibUioHook , EntryPoint = "hook_post_events" , CallingConvention = CallingConvention . Cdecl ) ]
258- public static extern UioHookResult PostEvents ( UioHookEvent [ ] events , uint size ) ;
258+ public static extern UioHookResult PostEvents ( [ In ] UioHookEvent [ ] events , uint size ) ;
259259#endif
260260
261261 /// <summary>
You can’t perform that action at this time.
0 commit comments