Textractor/i18n/gui_korean/ProcessWindow.h
Akash Mozumdar 0b79811cc3 Revert "remove korean gui (for now) since its hard to maintain"
This reverts commit 60866c158a11a2d666998aba7cf70b0201c7a764.
2018-05-24 05:36:05 -04:00

24 lines
508 B
C++

#pragma once
#include "ITH.h"
class ProcessWindow
{
public:
ProcessWindow(HWND hDialog);
void InitProcessDlg();
void RefreshProcess();
void AttachProcess();
void DetachProcess();
void CreateProfileForSelectedProcess();
void DeleteProfileForSelectedProcess();
void RefreshThread(int index);
private:
void RefreshThreadWithPID(DWORD pid, bool isAttached);
DWORD GetSelectedPID();
HWND hDlg;
HWND hlProcess;
HWND hbRefresh,hbAttach,hbDetach,hbAddProfile,hbRemoveProfile;
HWND heOutput;
};