Mar 12, 2003 #1 decoy250 Technical User Jan 11, 2003 1 SE Can anyone please help me how to know which applications are running (as they are listed in the task manager!)
Can anyone please help me how to know which applications are running (as they are listed in the task manager!)
Mar 12, 2003 #2 palbano Programmer Oct 9, 1998 4,341 US Code: BOOL EnumProcesses( DWORD *lpidProcess, // array of process identifiers DWORD cb, // size of array DWORD *cbNeeded // number of bytes returned ); there are examples on MSDN that use this API to obtain a list of running processes. -pete Upvote 0 Downvote
Code: BOOL EnumProcesses( DWORD *lpidProcess, // array of process identifiers DWORD cb, // size of array DWORD *cbNeeded // number of bytes returned ); there are examples on MSDN that use this API to obtain a list of running processes. -pete