view dep/animia/include/win32.h @ 60:d417e9381ca5

filesystem: WIP class-ification of paths
author Paper <mrpapersonic@gmail.com>
date Fri, 29 Sep 2023 13:52:50 -0400
parents 6ff7aabeb9d7
children 4c6dd5999b39
line wrap: on
line source

#ifndef __animia__windows_h
#define __animia__windows_h
#include <vector>
#include <string>
#include <unordered_map>

namespace Animia::Windows {

std::vector<int> get_all_pids();
std::string get_process_name(int pid);
std::vector<std::string> get_open_files(int pid);
std::unordered_map<int, std::vector<std::string>> get_all_open_files();

}

#endif // __animia__windows_h