I found that MinGW Win32 compatibility layer has following definition in ndis.h:
#define NdisGetCurrentSystemTime KeQuerySystemTime
In WinDDK, definition is:
EXPORT VOID NdisGetCurrentSystemTime(PLARGE_INTEGER pSystemTime);
Does native NdisXX function really isn't adding anything to KeQuerySystemTime call? Or there is a large difference (allowed IRQL etc) between them in native OS rather than in MinGW hacked point of view? Do they relate differently to the resolution of system timer (which can be retrieved via KeQueryPerformanceCounter())?