mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
22 lines
373 B
C
22 lines
373 B
C
/*
|
|
* DESCRIPTION: Entry point for TDI.SYS
|
|
* (c) Captain Obvious
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
extern LONG CteTimeIncrement;
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
DriverEntry(IN PDRIVER_OBJECT DriverObject,
|
|
IN PUNICODE_STRING RegistryPath)
|
|
{
|
|
/* Initialize the time increment for CTE timers */
|
|
CteTimeIncrement = KeQueryTimeIncrement();
|
|
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
/* EOF */
|