C#中调用系统API打开和关闭光驱

来源:互联网 发布:启动和关闭mysql 编辑:程序博客网 时间:2024/05/01 19:57

using System;
using System.Text;
using System.Runtime.InteropServices;

class CloseCD
{
 //API声明

  [DllImport( "winmm.dll", EntryPoint="mciSendStringA", CharSet=CharSet.Ansi )]
  protected static extern int mciSendString( string lpstrCommand, StringBuilder lpstrReturnString, int uReturnLength, IntPtr hwndCallback );

  public static void Main()
  {

    int ret = mciSendString( "set cdaudio door open", null, 0, IntPtr.Zero );//打开光区

    Console.ReadLine();

    ret = mciSendString( "set cdaudio door closed", null, 0, IntPtr.Zero );//关闭光区
  }
}

原创粉丝点击