some Nt vs. Zw fixes; these functions shouldn't be used in ntoskrnl but since they're shared there's a chance they could be used Modified: trunk/reactos/lib/rtl/time.c _____
Modified: trunk/reactos/lib/rtl/time.c --- trunk/reactos/lib/rtl/time.c 2005-09-22 23:23:00 UTC (rev 17990) +++ trunk/reactos/lib/rtl/time.c 2005-09-22 23:46:20 UTC (rev 17991) @@ -401,7 +401,7 @@
SYSTEM_TIMEOFDAY_INFORMATION TimeInformation; NTSTATUS Status;
- Status = NtQuerySystemInformation(SystemTimeOfDayInformation, + Status = ZwQuerySystemInformation(SystemTimeOfDayInformation, &TimeInformation,
sizeof(SYSTEM_TIMEOFDAY_INFORMATION), NULL); @@ -426,7 +426,7 @@ SYSTEM_TIMEOFDAY_INFORMATION TimeInformation; NTSTATUS Status;
- Status = NtQuerySystemInformation(SystemTimeOfDayInformation, + Status = ZwQuerySystemInformation(SystemTimeOfDayInformation, &TimeInformation,
sizeof(SYSTEM_TIMEOFDAY_INFORMATION), NULL);