Inheritance: IJoystickDriver2
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
        }
Ejemplo n.º 5
0
 public static uint joyGetPosEx(int uJoyID, ref WinMMJoystick.JoyInfoEx pji);
Ejemplo n.º 6
0
 public static WinMMJoystick.JoystickError joyGetDevCaps(int uJoyID, out WinMMJoystick.JoyCaps pjc, int cbjc);