WlanSetProfilePosition

[DllImport("wlanapi.dll", SetLastError = true)]
public static extern uint WlanSetProfilePosition(
   IntPtr hClientHandle,
   ref GUID pInterfaceGuid,
   [MarshalAs(UnmanagedType.LPWStr)] string strProfileName,
   uint dwPosition,
   IntPtr pReserved
);

Microsoft documentation: Link

Last updated