mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
18 lines
512 B
C++
18 lines
512 B
C++
#ifndef LUNA_PROCLIST_WIN_H
|
|
#define LUNA_PROCLIST_WIN_H
|
|
#include"window.h"
|
|
#include"controls.h"
|
|
class processlistwindow:public mainwindow{
|
|
textedit* g_hEdit;
|
|
button* g_hButton;
|
|
listbox* g_hListBox;
|
|
button* g_refreshbutton;
|
|
std::unordered_map<std::wstring,std::vector<int>> g_exe_pid;
|
|
void PopulateProcessList(listbox*,std::unordered_map<std::wstring,std::vector<int>>&);
|
|
public:
|
|
processlistwindow(mainwindow* parent=0);
|
|
void on_size(int w,int h);
|
|
void on_show();
|
|
};
|
|
|
|
#endif |