mirror of
https://github.com/silverf0x/RpcView
synced 2026-06-08 17:26:38 +00:00
19 lines
325 B
C++
19 lines
325 B
C++
#ifndef _PROCESS_ENTRY_H_
|
|
#define _PROCESS_ENTRY_H_
|
|
|
|
#include <windows.h>
|
|
|
|
//------------------------------------------------------------------------------
|
|
class ProcessEntry_C
|
|
{
|
|
public:
|
|
ProcessEntry_C(ULONG Ppid, ULONG Pid)
|
|
{
|
|
this->Ppid=Ppid;
|
|
this->Pid = Pid;
|
|
}
|
|
ULONG Ppid;
|
|
ULONG Pid;
|
|
};
|
|
|
|
#endif //_PROCESS_ENTRY_H_
|