ProcessResult.idl
 1  namespace PowerToys
 2  {
 3      namespace FileLocksmithLib
 4      {
 5          namespace Interop
 6          {
 7              [default_interface] runtimeclass ProcessResult {
 8                  ProcessResult(String name, UInt32 pid, String user, String[] files);
 9                  String name{ get; };
10                  UInt32 pid{ get; };
11                  String user{ get; };
12                  String[] files{ get; };
13              };
14          }
15      }
16  }