首 页文章中心下载中心繁體中文
设为首页
加入收藏
联系我们
您当前的位置:开源盛世-源代码下载网 -> 文章中心 -> 网站开发类 -> NET 技术 -> .NET基础 -> 文章内容 退出登录 用户管理
栏目导航
· .NET基础 · Asp.Net
· 综合应用 · 数据库应用
· XML 应用 · 控件开发和使用
热门文章
· Tab Control控件使用...
· 学生档案管理系统
· [图文] 排列组合公式
· UTF-8与GB2312之间的...
· DirectShow下载安装...
· Virtual PC 在PAE模...
· Windows2000终端服务...
· MapInfo上的GIS系统...
· kalman filter 卡尔...
· Windows2000终端服务...
相关文章
· C#调用脚本的实现
· Visual Basic调用Wi...
C#调用WIN32API系列二列举局网内共享打印机
作者:佚名  来源:vscodes.com整理  发布时间:2005-12-16 13:05:59  发布人:Polaris

减小字体 增大字体


C#调用WIN32API系列二列举局网内共享打印机
 C#通过调用WIN32API可以实现非常强大的功能,本文将着重讲述如何通过调用WIN32API实现列举局域网络内所有共享的打印机。
 首先我们看看EnumPrinters函数的定义
BOOL EnumPrinters(
  DWORD Flags,         // printer object types
  LPTSTR Name,         // name of printer object
  DWORD Level,         // information level
  LPBYTE pPrinterEnum, // printer information buffer
  DWORD cbBuf,         // size of printer information buffer
  LPDWORD pcbNeeded,   // bytes received or required
  LPDWORD pcReturned   // number of printers enumerated
);
 这个api有几个返回参数, 其中最重要的是pPrinterEnum所指的缓冲区中,是一个
PRINTER_INFO_N的结构数组, 这里N根据Level参数而变化, 这里我们用的是1, 所以用到的结构是
typedef struct _PRINTER_INFO_1 {
  DWORD  Flags;
  LPTSTR pDes cription;
  LPTSTR pName;
  LPTSTR pComment;
} PRINTER_INFO_1

C#要调用API首先要引入动态库,EnumPrinters在winspool.drv这个动态库中。引入语句如下
[DllImport("winspool.drv", CharSet=CharSet.Auto)]
然后是定义PRINTER_INFO_1结构
  [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Auto)]
  struct PRINTER_INFO_1
 {
  int flags;
  [MarshalAs(UnmanagedType.LPTStr)]
  public string pDes cription;
  [MarshalAs(UnmanagedType.LPTStr)]
  public string pName;
  [MarshalAs(UnmanagedType.LPTStr)]
  public string pComment;
 }
 好了,全部的源代码如下:
using System;
using System.Collections;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Drawing.Printing;
public class QuickTest {
 [DllImport("winspool.drv", CharSet=CharSet.Auto)]
 static extern bool EnumPrinters(int flags, string name, int level, IntPtr pPrinterEnum,
  int cbBuf, out int pcbNeeded, out int pcReturned);
 
 private const int PRINTER_ENUM_NETWORK = 0x00000040;
 private const int PRINTER_ENUM_LOCAL = 0x00000002;
 private const int PRINTER_ENUM_REMOTE      = 0x00000010;
 [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Auto)]
  struct PRINTER_INFO_1
 {
  int flags;
  [MarshalAs(UnmanagedType.LPTStr)]
  public string pDes cription;
  [MarshalAs(UnmanagedType.LPTStr)]
  public string pName;
  [MarshalAs(UnmanagedType.LPTStr)]
  public string pComment;
 }
 
 public void EnumeratePrintersWin()
 {
  bool Success;
  int cbRequired;
  int nEntries;
  
  IntPtr outb = IntPtr.Zero;
    
  Success = EnumPrinters(PRINTER_ENUM_NETWORK | PRINTER_ENUM_LOCAL | PRINTER_ENUM_REMOTE, null , 1, outb, 0, out cbRequired, out nEntries);
  outb = Marshal.AllocHGlobal(cbRequired);
  Success = EnumPrinters(PRINTER_ENUM_NETWORK | PRINTER_ENUM_LOCAL | PRINTER_ENUM_REMOTE, null , 1, outb, cbRequired, out cbRequired, out nEntries);
  
  PRINTER_INFO_1[] portsArray = new PRINTER_INFO_1[cbRequired];
  

  IntPtr current = outb;
  try {
   for (int i=0; i<portsArray.Length; i++)
   {
    portsArray[i] = (PRINTER_INFO_1) Marshal.PtrToStructure(current,
     typeof(PRINTER_INFO_1));
    current=(IntPtr)((int)current+Marshal.SizeOf(typeof(PRINTER_INFO_1)));
    Console.WriteLine(i+": \n"+portsArray[i].pName+"\n"+portsArray[i].pDes cription+"\n"+portsArray[i].pComment+"\n");
   }
  }
  catch (Exception) {
   //Console.WriteLine(exp.StackTrace);
  }
  Marshal.FreeHGlobal(outb);
 }
 public QuickTest () {

 }
 public static void Main() {
  QuickTest qt = new QuickTest();
  qt.EnumeratePrintersWin();
 }
}
联系作者zlyperson@163.net


End of《C#调用WIN32API系列二列举局网内共享打印机》

[] [返回上一页] [打 印] [收 藏]
上一篇文章:C#学习文档
 
∷相关“C#调用WIN32API系列二列举局网内共享打印机”文章评论∷
(评论内容只代表网友观点,与本站立场无关!) [更多评论...]
关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图 网站目录 鄂ICP备06007162
开源盛世 版权所有Copyright © 2003-2005 VSCodes.Com. All Rights Reserved.