Mar 12, 2003 #1 decoy250 Technical User Joined Jan 11, 2003 Messages 1 Location 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 Joined Oct 9, 1998 Messages 4,341 Location 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