@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Fills an array of type uint with the process ID's of all processes attached to this console. !!!!C# Signature: [DllImport("kernel32.dll", SetLastError = true)] static extern uint GetConsoleProcessList( uint[] ProcessList, uint ProcessCount ); !!!!VB Signature: Declare Function GetConsoleProcessList Lib "kernel32.dll" (TODO) As TODO !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: !!!!Tips & Tricks: Please add some! !!!!Sample Code: uint[] procIDs = new uint[64]; GetConsoleProcessList(procIDs, 64); Documentation: GetConsoleProcessList@msdn on MSDN
Edit kernel32.GetConso...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.