SystemParametersInfo function user32

int SystemParametersInfo(
  1. int uiAction,
  2. int uiParam,
  3. Pointer<NativeType> pvParam,
  4. int fWinIni,
)

Retrieves or sets the value of one of the system-wide parameters. This function can also update the user profile while setting a parameter.

BOOL SystemParametersInfoW(
  UINT  uiAction,
  UINT  uiParam,
  PVOID pvParam,
  UINT  fWinIni
);

Implementation

int SystemParametersInfo(
        int uiAction, int uiParam, Pointer pvParam, int fWinIni) =>
    _SystemParametersInfo(uiAction, uiParam, pvParam, fWinIni);