Kernel32DeleteAtom Method
Decrements the reference count of a local string atom.
If the atom's reference count is reduced to zero,
DeleteAtom(UInt16) removes the string associated with the atom from the local atom table.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", ExactSpelling = true, SetLastError = true)]
public static ushort DeleteAtom(
ushort atom
)
<DllImportAttribute("Kernel32.dll", ExactSpelling := true, SetLastError := true>]
Public Shared Function DeleteAtom (
atom As UShort
) As UShort
Dim atom As UShort
Dim returnValue As UShort
returnValue = Kernel32.DeleteAtom(atom)
public:
[DllImportAttribute(L"Kernel32.dll", ExactSpelling = true, SetLastError = true)]
static unsigned short DeleteAtom(
unsigned short atom
)
[<DllImportAttribute("Kernel32.dll", ExactSpelling = true, SetLastError = true)>]
static member DeleteAtom :
atom : uint16 -> uint16
No code example is currently available or this language may not be supported.
- atom UInt16
-
The atom to be deleted.
UInt16
If the function succeeds, the return value is zero.
If the function fails, the return value is the value specified in
atom parameter.