Desktop Functions: Smart Device Functions:
|
CreateProcess (coredll)
coredll is for smart devices, not desktop Windows. Therefore, this information only applies to code using the .NET Compact Framework. To see if information for CreateProcess in other DLLs exists, click on Find References to the right. C# Signature:
[DllImport("coredll.dll", SetLastError=true)] VB Signature:
Declare Function CreateProcess Lib "coredll.dll" (ByVal imageName As String, ByVal cmdLine As String, ByVal lpProcessAttributes As IntPtr, ByVal lpThreadAttributes As IntPtr, ByVal boolInheritHandles As Int32, ByVal dwCreationFlags As Int32, ByVal lpEnvironment As IntPtr, ByVal lpszCurrentDir As IntPtr, ByVal si As Byte(), ByVal pi As ProcessInfo) As Integer User-Defined Types:C#
public class ProcessInfo VB
Public Class ProcessInfo Notes:None. Tips & Tricks:You will need the above ProcessInfo class and may also want to use GetLastError and WaitForSingleObject. COMMENT: What about filling in "si.cb = sizeof(si);". No such code in the example. Sample Code:C# Sample usage:
ProcessInfo pi = new ProcessInfo(); VB Sample Usage:
Dim pi As New ProcessInfo Alternative Managed API: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). |
|