DeleteAtom  1.H6Q32 

The DeleteAtom function decrements the reference count of a local string atom. If the atom s reference count is reduced to zero, DeleteAtom removes the string associated with the atom from the local atom table.

ATOM DeleteAtom(

    ATOM nAtom

// atom to delete 

   );

 

 

Parameters

nAtom

Identifies the atom and character string to be deleted.

 

Return Values

If the function succeeds, the return value is zero.

If the function fails, the return value is the nAtom parameter. To get extended error information, call GetLastError11C2VS7.

Remarks

A string atom s reference count specifies the number of times the atom has been added to or removed from the atom table. The AddAtomME0_NZ function increments the count on each call. The DeleteAtom function decrements the count on each call but removes the string only if the atom s reference count is zero.

The only way to ensure that an atom has been deleted from the atom table is to call this function repeatedly until it fails. When the reference count is reduced to zero, the next call to the FindAtom or DeleteAtom function fails.

The DeleteAtom function has no effect on an integer atom (an atom created by using the MAKEINTATOM3MW0_1L macro). The function always returns zero for an integer atom.

See Also

AddAtom, FindAtom, GlobalAddAtom, GlobalDeleteAtom, GlobalFindAtom, MAKEINTATOM