Guest User

Untitled

a guest
Jan 30th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.33 KB | None | 0 0
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using System.Text;
  4.  
  5. namespace koronawirus
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             ConsoleKey key;
  12.             while (true)
  13.             {
  14.                 key = Console.ReadKey().Key;
  15.                 switch (key)
  16.                 {
  17.                     case ConsoleKey.O:
  18.                         open();
  19.                         break;
  20.                     case ConsoleKey.C:
  21.                         close();
  22.                         break;
  23.                     default:
  24.                         return;
  25.                 }
  26.             }
  27.         }
  28.  
  29.         private static void open()
  30.         {
  31.             int ret = mciSendString("set cdaudio door open", null, 0, IntPtr.Zero);
  32.         }
  33.  
  34.         private static void close()
  35.         {
  36.             int ret = mciSendString("set cdaudio door closed", null, 0, IntPtr.Zero);
  37.         }
  38.  
  39.         [DllImport("winmm.dll", EntryPoint = "mciSendStringA", CharSet = CharSet.Ansi)]
  40.         protected static extern int mciSendString(string lpstrCommand,
  41.                                                    StringBuilder lpstrReturnString,
  42.                                                    int uReturnLength,
  43.                                                    IntPtr hwndCallback);
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment