MAKEINTATOM
The MAKEINTATOM
macro creates an integer atom that represents a character string of decimal
digits.
Integer atoms
created by this macro can be added to an atom table by using the AddAtom
LPTSTR MAKEINTATOM(
WORD wInteger |
// integer to make
into atom |
); |
|
Parameters
wInteger
Specifies the
numeric value to be made into an integer atom.
Return Values
The return
value is a pointer to the atom created for the given integer.
Remarks
Although the
return value of the MAKEINTATOM macro is cast as an LPTSTR
The DeleteAtom
The MAKEINTATOM
macro is defined as follows:
#define MAKEINTATOM(i) (LPTSTR) ((DWORD) ((WORD) (i)))
See Also