1 / 572
文档名称:

Programming - - Windows 32-bit Kernel Ref Win32 API Reference for HLA - Kernel32.pdf

格式:pdf   页数:572
下载后只包含 1 个 PDF 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

Programming - - Windows 32-bit Kernel Ref Win32 API Reference for HLA - Kernel32.pdf

上传人:bolee65 2014/7/6 文件大小:0 KB

下载得到文件列表

Programming - - Windows 32-bit Kernel Ref Win32 API Reference for HLA - Kernel32.pdf

文档介绍

文档介绍:Win32 API Reference
Win32 API Reference for HLA
1
AddAtom
The AddAtom function adds a character string to the local atom table and returns a unique value (an atom) identify-
ing the string.
AddAtom: procedure
(
lpString: string
);
stdcall;
returns( "eax" );
external( "__imp__******@4" );
Parameters
lpString
[in] Pointer to the null-terminated string to be added. The string can have a maximum size of 255 bytes. Strings
differing only in case are considered identical. The case of the first string added is preserved and returned by the
GetAtomName function.
Alternatively, you can use an integer atom that has been converted using the MAKEINTATOM macro. See the
Remarks for more information.
Return Values
If the function eeds, the return value in EAX is the newly created atom.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
The AddAtom function stores no more than one copy of a given string in the atom table. If the string is already in the
table, the function returns the existing atom and, in the case of a string atom, increments the string's reference count.
If lpString has the form "#1234", AddAtom 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 is
greater than or equal to 0xC000, the return value is zero, indicating an error. If lpString was created by the MAKEIN-
TATOM macro, the low-order word must be in the range 0x0001 through 0xBFFF. If the low-order word is not in
this range, the function fails.
If lpString has any other form, AddAtom returns a string atom.
Requirements
Windows NT/2000: Requires Windows NT or later.
Windows 95/98: Requires Windows 95 or later.
Header: Declared in .
Library: Use .
Page 1
Volume 1
onsole
The onsole function allocates a new console for