GetAtomName

[DllImport("Kernel32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.U4)]
public static extern uint GetAtomName(
   ushort nAtom,
   StringBuilder lpBuffer,
   int nSize
);

Microsoft documentation: Link

Last updated