null-terminated 和atom是什么意思?该怎么解决

null-terminated 和atom是什么意思?Points to a null-terminated string that specifies the class name o

null-terminated 和atom是什么意思?
Points to a null-terminated string that specifies the class name or is an atom that identifies the class-name string.
If this parameter is an atom, it must be a global atom created by a previous call to the GlobalAddAtom function. 
The atom, a 16-bit value, must be placed in the low-order word of lpszClass; the high-order word must be zero.

null-terminated 和atom是什么意思?
low-order 是低优先级的意思吗?
high-order 是高优先级的意思吗?

[解决办法]
null-terminated是以NULL结尾的意思

low-order word和high-order word分别是32位数值中的低字与高字,貌似是这样.....

其它就不知道了.....
[解决办法]
C NULL=0,以0结尾的字符串,ATOM WORD型,看成一个标识符,LOW ORDER低次序,内存中低字节在前
[解决办法]
http://topic.csdn.net/t/20021013/23/1093677.html
Win32系统中,为了实现信息共享,系统维护了一张全局原子表,用于保存字符串与之对应的标志符的组合。应用程序将一个字符串放到原子表中,并接受系统返回的一个16位的整数,这个整数被称为原子(ATOM),用于访问可变长度的字符串,而放到原子表保存的字符串称为原子名称。
 
例子:
http://www.china-pub.com/computers/eMook/1529/info.htm

INTEL的CPU处理内存中的数时,是低位的字节在前,有些CPU则反之.