Home
last modified time | relevance | path

Searched refs:NtVdmPathSize (Results 1 – 2 of 2) sorted by relevance

/reactos/subsystems/mvdm/ntvdm/
H A Dntvdm.c36 ULONG NtVdmPathSize; // Length without NULL terminator. variable
544 NtVdmPathSize = GetModuleFileNameW(NULL, NtVdmPath, _countof(NtVdmPath)); in wmain()
547 Success = ((NtVdmPathSize != 0) && (NtVdmPathSize < _countof(NtVdmPath)) && in wmain()
559 NtVdmPathSize = GetSystemDirectoryW(NtVdmPath, _countof(NtVdmPath)); in wmain()
560 Success = ((NtVdmPathSize != 0) && (NtVdmPathSize < _countof(NtVdmPath))); in wmain()
564NtVdmPathSize = (ULONG)wcslen(SharedUserData->NtSystemRoot) + _countof("\\System32") - 1; in wmain()
565 Success = (NtVdmPathSize < _countof(NtVdmPath)); in wmain()
580 NtVdmPathSize = (ULONG)wcslen(NtVdmPath); in wmain()
H A Dntvdm.h100 extern ULONG NtVdmPathSize; // Length without NULL terminator.