私は vmware ワークステーションで実行されている Windows 7 をいくつか持っており、ゲームの実行中にマウスクリック/キープレスを行うアプリケーションを作成したいと考えています。シミュレートのためにいくつかのdllimportを使用するac#プログラムを作成しました:
[System.Runtime.InteropServices.DllImport("user32.dll")]
public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);
[DllImport("user32.dll")]
public static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, int dwExtraInfo);
これは通常の PC では問題なく動作しますが、VMware で実行してゲームを開くと、クリックしなくなりました。
どうすればこれを修正できますか:D
ステファン。