Sync with trunk r63793.
[reactos.git] / drivers / network / tdi / misc / main.c
1 /*
2 * DESCRIPTION: Entry point for TDI.SYS
3 * (c) Captain Obvious
4 */
5
6 #include "precomp.h"
7
8 extern LONG CteTimeIncrement;
9
10 NTSTATUS
11 NTAPI
12 DriverEntry(IN PDRIVER_OBJECT DriverObject,
13 IN PUNICODE_STRING RegistryPath)
14 {
15 /* Initialize the time increment for CTE timers */
16 CteTimeIncrement = KeQueryTimeIncrement();
17
18 return STATUS_SUCCESS;
19 }
20
21 /* EOF */