Comparing two files (old and new), I see:
private extern static void SipShowIM(uint dwFlag);
... in the old file and:
private static extern void SipShowIM(uint dwFlag);
... in a new file.
Why they have changed, I do not know; Does it matter what comes first, external or static?
UPDATE
Resharper had to do this because I know I did not do this (directly), but here is another difference between the old ones:
public volatile static bool ProcessCommands = true;
... and new:
public static volatile bool ProcessCommands = true;
source share