29 lines
516 B
C
29 lines
516 B
C
// FakeProcessDll.cpp : 定义 DLL 应用程序的导出函数。
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "MyFake.h"
|
|
|
|
/*
|
|
注意不使用预编译头:
|
|
C++ -> 预编译头 -> 不适用预编译头
|
|
*/
|
|
|
|
void Fake(DWORD dwPID, TCHAR *lpszPath, TCHAR *lpszCmd)
|
|
{
|
|
if (0 == dwPID)
|
|
{
|
|
// FakeCurrentProcess(lpszPath, lpszCmd);
|
|
FakeOtherProcess(GetCurrentProcessId(), lpszPath, lpszCmd);
|
|
}
|
|
else if (0 < dwPID)
|
|
{
|
|
FakeOtherProcess(dwPID, lpszPath, lpszCmd);
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
注意不使用预编译头:
|
|
C++ -> 预编译头 -> 不适用预编译头
|
|
*/ |