BroadcastSystemMessage function user32

int BroadcastSystemMessage(
  1. int flags,
  2. Pointer<Uint32> lpInfo,
  3. int Msg,
  4. int wParam,
  5. int lParam,
)

Sends a message to the specified recipients. The recipients can be applications, installable drivers, network drivers, system-level device drivers, or any combination of these system components.

long BroadcastSystemMessageW(
  DWORD   flags,
  LPDWORD lpInfo,
  UINT    Msg,
  WPARAM  wParam,
  LPARAM  lParam
);

Implementation

int BroadcastSystemMessage(
        int flags, Pointer<Uint32> lpInfo, int Msg, int wParam, int lParam) =>
    _BroadcastSystemMessage(flags, lpInfo, Msg, wParam, lParam);