GlobalFindAtom在dephi中查找global atom table给定字符串中的元子。<br>摘自dephi6的帮助:<br>ATOM GlobalFindAtom(<br><br> LPCTSTR lpString // pointer to the string to find <br>  
; <br> <br><br>Parameters<br><br>lpString<br><br>Points to the null-terminated character string to search for. <br><br> <br><br>Return Values<br><br>If the function succeeds, the return value is the global atom associated with the given string.<br>If the function fails, the return value is zero. To get extended error information, call GetLastError. <br><br>Remarks<br><br>Even though Windows preserves the case of a string in an atom table as it was originally entered, the search performed by GlobalFindAtom is not case sensitive.<br>GlobalAddAtom在dephi中是向global atom table加入字符串and returns a unique value (an atom) identifying the string. <br>摘自dephi6的帮助:<br>ATOM GlobalAddAtom(<br><br> LPCTSTR lpString // pointer to the string to add <br>  
; <br> <br><br>Parameters<br><br>lpString<br><br>Points to the null-terminated string to be added. The string can have a maximum size of 255 bytes. Strings that differ only in case are considered identical. The case of the first string of this name added to the table is preserved and returned by the GlobalGetAtomName function. <br><br> <br><br>Return Values<br><br>If the function succeeds, the return value is the newly created atom.<br>If the function fails, the return value is zero. To get extended error information, call GetLastError. <br><br>Remarks<br><br>If the string already exists in the global atom table, the atom for the existing string is returned and the atom's reference count is incremented. <br>The string associated with the atom is not deleted from memory until its reference count is zero. For more information, see the <br>GlobalDeleteAtom function. <br>Global atoms are not deleted automatically when the application terminates. For every call to the GlobalAddAtom function, there must be a corresponding call to the GlobalDeleteAtom function. <br><br>GlobalAddAtom returns a string atom whose value is in the range 0xC000 through 0xFFFF. <br>If the lpString parameter has the form "#1234", GlobalAddAtom returns an integer atom whose value is the 16-bit representation of the decimal number specified in the string (0x04D2, in this example). If the decimal value specified is 0x0000 or a value in the range 0xC000 through 0xFFFF, the return value is zero, indicating an error. If lpString is in the range 0x0001 through 0xBFFF, the return value is the low-order word of lpString. <br><br>The MAKEINTATOM macro can be used to convert a WORD value into a string that can be added to the atom table by using the GlobalAddAtom function. <br><br>