mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
14 lines
272 B
C++
14 lines
272 B
C++
|
#ifndef PROCESSWRAPPER_H
|
||
|
#define PROCESSWRAPPER_H
|
||
|
|
||
|
class ProcessWrapper
|
||
|
{
|
||
|
public:
|
||
|
ProcessWrapper();
|
||
|
|
||
|
static unsigned int findProcess(const char *name, unsigned int pid_skip = 0);
|
||
|
static unsigned int currentProcessId();
|
||
|
};
|
||
|
|
||
|
#endif // PROCESSWRAPPER_H
|