SetUserObjectInformation function user32

int SetUserObjectInformation(
  1. int hObj,
  2. int nIndex,
  3. Pointer<NativeType> pvInfo,
  4. int nLength
)

Sets information about the specified window station or desktop object.

BOOL SetUserObjectInformationW(
  HANDLE hObj,
  int    nIndex,
  PVOID  pvInfo,
  DWORD  nLength
);

Implementation

int SetUserObjectInformation(
        int hObj, int nIndex, Pointer pvInfo, int nLength) =>
    _SetUserObjectInformation(hObj, nIndex, pvInfo, nLength);