Desktop Functions: Smart Device Functions:
|
system (msvcrt)
C# Signature:
[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl, SetLastError=true)] VB Signature:
Public Declare Function system Lib "msvcrt.dll" (ByVal sCommand As String) As Long User-Defined Types:None. Alternative Managed API:System.Diagnostics.Process.Start() Notes:None. Tips & Tricks:Please add some! Sample Code:
Public Declare Function system Lib "msvcrt.dll" (ByVal sCommand As String) As Long Public Declare Function system Lib "msvcrt.dll" (ByVal sCommand As String) As Long
Module Main() Module Main()
system("ECHO Hello world!") End Module 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). |
|