Наследование: IJoystickDriver2
Пример #1
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);
 }
Пример #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);