configureConnectionLanes method

EResult configureConnectionLanes(
  1. HSteamNetConnection hConn,
  2. int nNumLanes,
  3. Pointer<Int> pLanePriorities,
  4. Pointer<UnsignedShort> pLaneWeights,
)

Implementation

EResult configureConnectionLanes(
  HSteamNetConnection hConn,
  int nNumLanes,
  Pointer<Int> pLanePriorities,
  Pointer<UnsignedShort> pLaneWeights,
) =>
    EResult.fromValue(
      _configureConnectionLanes.call(
        this,
        hConn,
        nNumLanes,
        pLanePriorities,
        pLaneWeights,
      ),
    );