代码改变世界

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

2006-05-15 23:26  蓝之风  阅读(496)  评论(0编辑  收藏  举报

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 );//关闭光区
  }
}