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