상속: IJoystickDriver2
예제 #1
0
파일: WinRawInput.cs 프로젝트: Zeludon/FEZ
 protected override void CreateDrivers()
 {
     this.keyboard_driver = new WinRawKeyboard(this.Parent.WindowHandle);
       this.mouse_driver = new WinRawMouse(this.Parent.WindowHandle);
       this.joystick_driver = new WinMMJoystick();
       this.DevNotifyHandle = WinRawInput.RegisterForDeviceNotifications(this.Parent);
 }
예제 #2
0
 protected override void CreateDrivers()
 {
     this.keyboard_driver = new WinRawKeyboard(this.Parent.WindowHandle);
     this.mouse_driver    = new WinRawMouse(this.Parent.WindowHandle);
     this.joystick_driver = new WinMMJoystick();
     this.DevNotifyHandle = WinRawInput.RegisterForDeviceNotifications(this.Parent);
 }
예제 #3
0
        protected override void CreateDrivers()
        {
            keyboard_driver = new WinRawKeyboard(Parent.WindowHandle);
            mouse_driver    = new WinRawMouse(Parent.WindowHandle);
            joystick_driver = new WinMMJoystick();

            DevNotifyHandle = RegisterForDeviceNotifications(Parent);
        }
        protected override void CreateDrivers()
        {
            keyboard_driver = new WinRawKeyboard(Parent.WindowHandle);
            mouse_driver = new WinRawMouse(Parent.WindowHandle);
            joystick_driver = new WinMMJoystick();

            DevNotifyHandle = RegisterForDeviceNotifications(Parent);
        }
예제 #5
0
 public static uint joyGetPosEx(int uJoyID, ref WinMMJoystick.JoyInfoEx pji);
예제 #6
0
 public static WinMMJoystick.JoystickError joyGetDevCaps(int uJoyID, out WinMMJoystick.JoyCaps pjc, int cbjc);