SetUserObjectInformation

[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern bool SetUserObjectInformation(
   IntPtr hObj,
   int nIndex,
   [In] byte[] pvInfo,
   uint cbInfo
);

Microsoft documentation: Link

Last updated