mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
10 lines
341 B
C
10 lines
341 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "ProcessResult.h"
|
||
|
|
|
||
|
|
// Second version, checks handles towards files and all subfiles and folders of given dirs, if any.
|
||
|
|
std::vector<ProcessResult> find_processes_recursive(const std::vector<std::wstring>& paths);
|
||
|
|
|
||
|
|
// Gives the full path of the executable, given the process id
|
||
|
|
std::wstring pid_to_full_path(DWORD pid);
|