TpIsTimerSet - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTTP_H

// winbase:IsThreadpoolTimerSet
/**
 * Determines whether a timer object is currently set.
 *
 * \param[in] Timer A pointer to a TP_TIMER structure that defines the timer object.
 * \return LOGICAL TRUE if the timer is set; otherwise FALSE.
 * \sa https://learn.microsoft.com/en-us/windows/win32/api/threadpoolapiset/nf-threadpoolapiset-isthreadpooltimerset
 */
NTSYSAPI
LOGICAL
NTAPI
TpIsTimerSet(
    _In_ PTP_TIMER Timer
    );

#endif

View code on GitHub

NtDoc

No description available.