GlobalGetAtomName

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

Microsoft documentation: Link

Last updated