ConfigurePort

Long,非零表示成功,零表示失敗。會設定GetLastError If the function succeeds, the return value is nonzero.If the function fails, the return value is zero. To get extended error information, call GetLastError. 說

基本介紹

  • 中文名:ConfigurePort
  • 別名::ConfigurePortA
  • 庫名::winspool.drv
  • 作業系統::Requires Windows NT 3.1 
簡介,在C#中使用,

簡介

api函式名:ConfigurePort
作業系統:Requires Windows 95 or later
參數表:
pName———— String,欲對其連線埠進行配置的一台伺服器的名字。對於本地系統,請設為vbNullString
hwnd ———— Long,對話框父視窗的句柄
pPortName ————String,連線埠名
?pName————Points to a null-terminated string that specifies the name of the server on which the specified port exists. If this parameter is NULL, the port is local.
?hWnd————Identifies the parent window of the port-configuration dialog box.
?pPortName————Points to a null-terminated string that specifies the name of the port to be configured.
針對指定的連線埠,啟動一個連線埠配置對話框 The ConfigurePort function displays the port-configuration dialog box for a port on the specified server. 聲明:
Declare Function ConfigurePort Lib "winspool.drv" Alias "ConfigurePortA" (ByVal pName As String, ByVal hwnd As Long, ByVal pPortName As String) As Long

在C#中使用

導入庫:winspool.drv
***.Net中運用
命名空間 using System.Runtime.InteropServices;
導入庫  [DllImport("winspool.drv", EntryPoint="ConfigurePort")]
函式原型 public static extern int ConfigurePort (string pName,int hwnd,string pPortName );
參數說明 //pName String,欲對其連線埠進行配置的一台伺服器的名字
//hwnd Long,對話框父視窗的句柄
//pPortName String,連線埠名
返回值 非零表示成功,零表示失敗。

相關詞條

熱門詞條

聯絡我們