Desktop Functions: Smart Device Functions:
|
ProcessIdToSessionId (kernel32)
C# Signature:
[DllImport("kernel32.dll")] VB Signature:
Declare Function ProcessIdToSessionId Lib "kernel32.dll" (ByVal dwProcessId As Int32, ByRef pSessionId As Int32) As Int32 User-Defined Types:None. Notes:None. As always, only do SetLastError=true if you actually intend to call GetLastError. Tips & Tricks:Please add some! Sample Code:Get the Session Id for the current process in C# int sessionId = System.Diagnostics.Process.GetCurrentProcess().SessionId; Please add some! Alternative Managed API:int sessionId = System.Diagnostics.Process.GetProcessById(processId).SessionId; Do you know one? Please contribute it! Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|