I have encountered the ATOM type in the Win32api and also in the Acrobat API there is ASAtom.
As far as I can tell, atoms are keys for a hash table usually of strings to enable fast look up and share data between applications. Is this correct and what is the etymology of the atom type?
EDIT
After some extensive searching I noticed Prolog uses atoms, so there must be some origin to this word. It seems it used to refer to any single piece of data.
ATOMis defined astypedef WORD ATOMbecause a word is the addressable unit by the CPU (i.e. not divisible). – Jesse Good May 10 '12 at 1:00UINT_PTR, since CPUs nowadays address 32-bit and 64-bit chunks. :) – Mehrdad May 10 '12 at 1:01unsigned short(probably because it originated from 16-bit windows, but Acrobat API defines it asunsigned long. – Jesse Good May 10 '12 at 1:03