-3

我需要获得触发过程的确切时间(而不是创建过程的时间,我知道这是一段时间后)我需要在其图像加载到内存之前获得“运行”程序的时间. 是否可以获得?

附带问题 - winapi 中所有正在运行的进程都是通过 CreateProcess/Ex 函数调用创建的(那么我需要的时间就是调用此类函数的时间)或者还有其他一些在 Windows 中运行进程的其他方式?

4

1 回答 1

2

GetProcessTimes() should do the trick. It returns the process creation time, which corresponds to when the kernel object was actually created irrespective of when/if the image's code is executed.

于 2013-04-16T17:16:36.103 回答