mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 05:15:01 -06:00
9.34
This commit is contained in:
committed by
Kornel Lesiński
parent
83f8ddcc5b
commit
f08f4dcc3c
100
CPP/Windows/ProcessUtils.h
Normal file
100
CPP/Windows/ProcessUtils.h
Normal file
@@ -0,0 +1,100 @@
|
||||
// Windows/ProcessUtils.h
|
||||
|
||||
#ifndef __WINDOWS_PROCESS_UTILS_H
|
||||
#define __WINDOWS_PROCESS_UTILS_H
|
||||
|
||||
#include <psapi.h>
|
||||
|
||||
#include "../Common/MyString.h"
|
||||
|
||||
#include "Defs.h"
|
||||
#include "Handle.h"
|
||||
|
||||
namespace NWindows {
|
||||
|
||||
class CProcess: public CHandle
|
||||
{
|
||||
public:
|
||||
bool Open(DWORD desiredAccess, bool inheritHandle, DWORD processId)
|
||||
{
|
||||
_handle = ::OpenProcess(desiredAccess, inheritHandle, processId);
|
||||
return (_handle != 0);
|
||||
}
|
||||
|
||||
#ifndef UNDER_CE
|
||||
|
||||
bool GetExitCodeProcess(LPDWORD lpExitCode) { return BOOLToBool(::GetExitCodeProcess(_handle, lpExitCode)); }
|
||||
bool Terminate(UINT exitCode) { return BOOLToBool(::TerminateProcess(_handle, exitCode)); }
|
||||
#if(WINVER >= 0x0500)
|
||||
DWORD GetGuiResources (DWORD uiFlags) { return ::GetGuiResources(_handle, uiFlags); }
|
||||
#endif
|
||||
bool SetPriorityClass(DWORD dwPriorityClass) { return BOOLToBool(::SetPriorityClass(_handle, dwPriorityClass)); }
|
||||
DWORD GetPriorityClass() { return ::GetPriorityClass(_handle); }
|
||||
bool GetIoCounters(PIO_COUNTERS lpIoCounters ) { return BOOLToBool(::GetProcessIoCounters(_handle, lpIoCounters )); }
|
||||
|
||||
bool GetTimes(LPFILETIME creationTime, LPFILETIME exitTime, LPFILETIME kernelTime, LPFILETIME userTime)
|
||||
{ return BOOLToBool(::GetProcessTimes(_handle, creationTime, exitTime, kernelTime, userTime)); }
|
||||
|
||||
DWORD WaitForInputIdle(DWORD milliseconds) { return ::WaitForInputIdle(_handle, milliseconds); }
|
||||
|
||||
// Debug
|
||||
|
||||
bool ReadMemory(LPCVOID baseAddress, LPVOID buffer, SIZE_T size, SIZE_T* numberOfBytesRead)
|
||||
{ return BOOLToBool(::ReadProcessMemory(_handle, baseAddress, buffer, size, numberOfBytesRead)); }
|
||||
|
||||
bool WriteMemory(LPVOID baseAddress, LPCVOID buffer, SIZE_T size, SIZE_T* numberOfBytesWritten)
|
||||
{ return BOOLToBool(::WriteProcessMemory(_handle, baseAddress, buffer, size, numberOfBytesWritten)); }
|
||||
|
||||
bool FlushInstructionCache(LPCVOID baseAddress = 0, SIZE_T size = 0)
|
||||
{ return BOOLToBool(::FlushInstructionCache(_handle, baseAddress, size)); }
|
||||
|
||||
LPVOID VirtualAlloc(LPVOID address, SIZE_T size, DWORD allocationType, DWORD protect)
|
||||
{ return VirtualAllocEx(_handle, address, size, allocationType, protect); }
|
||||
|
||||
bool VirtualFree(LPVOID address, SIZE_T size, DWORD freeType)
|
||||
{ return BOOLToBool(::VirtualFreeEx(_handle, address, size, freeType)); }
|
||||
|
||||
// Process Status API (PSAPI)
|
||||
|
||||
bool EmptyWorkingSet()
|
||||
{ return BOOLToBool(::EmptyWorkingSet(_handle)); }
|
||||
bool EnumModules(HMODULE *hModules, DWORD arraySizeInBytes, LPDWORD receivedBytes)
|
||||
{ return BOOLToBool(::EnumProcessModules(_handle, hModules, arraySizeInBytes, receivedBytes)); }
|
||||
|
||||
DWORD MyGetModuleBaseName(HMODULE hModule, LPTSTR baseName, DWORD size)
|
||||
{ return ::GetModuleBaseName(_handle, hModule, baseName, size); }
|
||||
bool MyGetModuleBaseName(HMODULE hModule, CSysString &name)
|
||||
{
|
||||
const int length = 1000;
|
||||
DWORD resultLen = MyGetModuleBaseName(hModule, name.GetBuffer(length), length);
|
||||
name.ReleaseBuffer();
|
||||
return (resultLen != 0);
|
||||
}
|
||||
|
||||
DWORD MyGetModuleFileNameEx(HMODULE hModule, LPTSTR baseName, DWORD size)
|
||||
{ return ::GetModuleFileNameEx(_handle, hModule, baseName, size); }
|
||||
bool MyGetModuleFileNameEx(HMODULE hModule, CSysString &name)
|
||||
{
|
||||
const int length = MAX_PATH + 100;
|
||||
DWORD resultLen = MyGetModuleFileNameEx(hModule, name.GetBuffer(length), length);
|
||||
name.ReleaseBuffer();
|
||||
return (resultLen != 0);
|
||||
}
|
||||
|
||||
bool GetModuleInformation(HMODULE hModule, LPMODULEINFO moduleInfo)
|
||||
{ return BOOLToBool(::GetModuleInformation(_handle, hModule, moduleInfo, sizeof(MODULEINFO))); }
|
||||
bool GetMemoryInfo(PPROCESS_MEMORY_COUNTERS memCounters)
|
||||
{ return BOOLToBool(::GetProcessMemoryInfo(_handle, memCounters, sizeof(PROCESS_MEMORY_COUNTERS))); }
|
||||
|
||||
#endif
|
||||
|
||||
WRes Create(LPCWSTR imageName, const UString ¶ms, LPCWSTR curDir);
|
||||
|
||||
DWORD Wait() { return ::WaitForSingleObject(_handle, INFINITE); }
|
||||
};
|
||||
|
||||
WRes MyCreateProcess(LPCWSTR imageName, const UString ¶ms);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user