DiskDeviceClass.cs
上传用户:lyzyl198
上传日期:2008-05-19
资源大小:174k
文件大小:1k
源码类别:

C#编程

开发平台:

C#

  1. // UsbEject version 1.0 March 2006
  2. // written by Simon Mourier <email: simon [underscore] mourier [at] hotmail [dot] com>
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace UsbEject.Library
  7. {
  8.     /// <summary>
  9.     /// The device class for disk devices.
  10.     /// </summary>
  11.     public class DiskDeviceClass : DeviceClass
  12.     {
  13.         /// <summary>
  14.         /// Initializes a new instance of the DiskDeviceClass class.
  15.         /// </summary>
  16.         public DiskDeviceClass()
  17.             :base(new Guid(Native.GUID_DEVINTERFACE_DISK))
  18.         {
  19.         }
  20.     }
  21. }