Mercurial > sdl-ios-xcode
annotate src/joystick/dummy/SDL_sysjoystick.c @ 1162:2651158f59b8
Enable altivec blitters on PowerPC Linux, and some fixes for recent
GCCs versions.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 20 Oct 2005 06:55:26 +0000 |
parents | 51a8702d8ecd |
children | 435c2e481299 |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
769
b8d311d90021
Updated copyright information for 2004 (Happy New Year!)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
3 Copyright (C) 1997-2004 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Library General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2 of the License, or (at your option) any later version. | |
9 | |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 Library General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Library General Public | |
16 License along with this library; if not, write to the Free | |
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #ifdef SAVE_RCSID | |
24 static char rcsid = | |
25 "@(#) $Id$"; | |
26 #endif | |
27 | |
28 /* This is the system specific header for the SDL joystick API */ | |
29 | |
30 #include <stdio.h> /* For the definition of NULL */ | |
31 | |
32 #include "SDL_error.h" | |
33 #include "SDL_joystick.h" | |
34 #include "SDL_sysjoystick.h" | |
35 #include "SDL_joystick_c.h" | |
36 | |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
37 Uint8 SDL_numjoysticks = 0; |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
38 |
0 | 39 /* Function to scan the system for joysticks. |
40 * This function should set SDL_numjoysticks to the number of available | |
41 * joysticks. Joystick 0 should be the system default joystick. | |
42 * It should return 0, or -1 on an unrecoverable fatal error. | |
43 */ | |
44 int SDL_SYS_JoystickInit(void) | |
45 { | |
46 SDL_numjoysticks = 0; | |
47 return(0); | |
48 } | |
49 | |
50 /* Function to get the device-dependent name of a joystick */ | |
51 const char *SDL_SYS_JoystickName(int index) | |
52 { | |
53 SDL_SetError("Logic error: No joysticks available"); | |
54 return(NULL); | |
55 } | |
56 | |
57 /* Function to open a joystick for use. | |
58 The joystick to open is specified by the index field of the joystick. | |
59 This should fill the nbuttons and naxes fields of the joystick structure. | |
60 It returns 0, or -1 if there is an error. | |
61 */ | |
62 int SDL_SYS_JoystickOpen(SDL_Joystick *joystick) | |
63 { | |
64 SDL_SetError("Logic error: No joysticks available"); | |
65 return(-1); | |
66 } | |
67 | |
68 /* Function to update the state of a joystick - called as a device poll. | |
69 * This function shouldn't update the joystick structure directly, | |
70 * but instead should call SDL_PrivateJoystick*() to deliver events | |
71 * and update joystick device state. | |
72 */ | |
73 void SDL_SYS_JoystickUpdate(SDL_Joystick *joystick) | |
74 { | |
75 return; | |
76 } | |
77 | |
78 /* Function to close a joystick after use */ | |
79 void SDL_SYS_JoystickClose(SDL_Joystick *joystick) | |
80 { | |
81 return; | |
82 } | |
83 | |
84 /* Function to perform any system-specific joystick related cleanup */ | |
85 void SDL_SYS_JoystickQuit(void) | |
86 { | |
87 return; | |
88 } | |
89 |