Home | History | Annotate | Download | only in beos

Lines Matching defs:stick

47 	BJoystick *stick;
99 BJoystick *stick;
109 stick = new BJoystick;
110 joystick->hwdata->stick = stick;
113 if ( stick->Open(SDL_joyport[joystick->index]) == B_ERROR ) {
120 stick->EnableCalibration();
123 joystick->nbuttons = stick->CountButtons();
124 joystick->naxes = stick->CountAxes();
125 joystick->nhats = stick->CountHats();
161 BJoystick *stick;
168 stick = joystick->hwdata->stick;
173 stick->Update();
174 stick->GetAxisValues(axes);
175 stick->GetHatValues(hats);
176 buttons = stick->ButtonValues();
206 joystick->hwdata->stick->Close();
207 delete joystick->hwdata->stick;