1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.Runtime.InteropServices;
using System.Text;
...
public static void Main( )
{
int result = mciSendString
("Öffnen", null, 0, IntPtr.Zero);
result =
mciSendString ("Schliessen",
null, 0, IntPtr.Zero);
}
[DllImport("winmm.dll", EntryPoint="mciSendStringA", CharSet=CharSet.Ansi)]
protected static extern int mciSendString
(string mciCommand,
StringBuilder returnValue,
int returnLength,
IntPtr callback);
|