Group: Atom - Library: kernel32
Retrieving list of Global Atom names
UINT GlobalGetAtomName(
ATOM nAtom, // atom identifier
LPTSTR lpBuffer, // buffer for atom string
int nSize // size of buffer
);
DECLARE INTEGER GlobalGetAtomName IN kernel32;
INTEGER nAtom,;
STRING @ lpBuffer,;
INTEGER nSize
nAtom [in] Identifies the global atom associated with the character string to be retrieved.
lpBuffer [out] Pointer to the buffer for the character string.
nSize [in] Specifies the size, in TCHARs, of the buffer.
If the function succeeds, the return value is the length of the string copied to the buffer. If the function fails, the return value is zero.