DeleteAtom

[DllImport("kernel32.dll", SetLastError = true)]
public static extern IntPtr DeleteAtom(
   IntPtr nAtom
);

Microsoft documentation: Link

Last updated