#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The NtStartProfile routine starts the specified profile object.
*
* \param ProfileHandle A handle to the profile object.
* \return NTSTATUS Successful or errant status.
*/
NTSYSCALLAPI
NTSTATUS
NTAPI
NtStartProfile(
_In_ HANDLE ProfileHandle
);
View code on GitHub#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwStartProfile(
_In_ HANDLE ProfileHandle
);
View code on GitHubNo description available.
Function NtStartProfile starts performance counter associated with previously created Profile Object.
HANDLE to Profile Object.
Counter is stopped when user call NtStopProfile.