GetDefaultCommConfig

[DllImport("Kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetDefaultCommConfig(
   string lpszName,
   ref COMMCONFIG lpCC,
   ref uint lpdwSize
);

Microsoft documentation: Link

Last updated