mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
13 lines
195 B
C
13 lines
195 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
#include <vector>
|
||
|
|
#include <Windows.h>
|
||
|
|
|
||
|
|
struct ProcessResult
|
||
|
|
{
|
||
|
|
std::wstring name;
|
||
|
|
DWORD pid;
|
||
|
|
std::wstring user;
|
||
|
|
std::vector<std::wstring> files;
|
||
|
|
};
|