7 references to Interop
Microsoft.Extensions.Hosting.WindowsServices (7)
Internal\Win32.cs (7)
20snapshotHandle = Interop.Kernel32.CreateToolhelp32Snapshot(Interop.Kernel32.SnapshotFlags.Process, 0); 22Interop.Kernel32.PROCESSENTRY32 procEntry = default; 23procEntry.dwSize = sizeof(Interop.Kernel32.PROCESSENTRY32); 24if (Interop.Kernel32.Process32First(snapshotHandle, &procEntry)) 39while (Interop.Kernel32.Process32Next(snapshotHandle, &procEntry)); 47Interop.Kernel32.CloseHandle(snapshotHandle);