The InitAtomTable function initializes the local atom table and sets it to the specified size.
BOOL InitAtomTable(
DWORD nSize |
// size of atom table |
); |
The atom table is a hash table. You will get better performance by passing a prime number in nSize, up to the maximum number of atoms possible, which is 0x3FFF (0xC001 through 0xFFFF).
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
An application need not use this function to use a local atom table. The default size of the local and global atom tables is 37 table entries. If an application does use InitAtomTable, however, it should call the function before any other atom-management function.
If an application uses a large number of local atoms, it can reduce the time required to add an atom to the local atom table or to find an atom in the table by increasing the size of the table. However, this increases the amount of memory required to maintain the table.
The size of the global atom table cannot be changed.
AddAtom, DeleteAtom, FindAtom, GetAtomName, GlobalAddAtom, GlobalDeleteAtom, GlobalFindAtom, GlobalGetAtomName
file: /Techref/os/win/api/win32/func/src/f49_3.htm, 2KB, , updated: 2000/4/7 11:19, local time: 2024/11/9 22:49,
3.148.104.191:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f49_3.htm"> InitAtomTable</A> |
Did you find what you needed? |