Mercurial > mplayer.hg
comparison input/joystick.c @ 23663:4427d50d113f
Add comments to some preprocessor directives.
author | diego |
---|---|
date | Wed, 27 Jun 2007 23:08:18 +0000 |
parents | 4a38fdda5d72 |
children | afa125da85cf |
comparison
equal
deleted
inserted
replaced
23662:5c5fb6af79d1 | 23663:4427d50d113f |
---|---|
144 } | 144 } |
145 | 145 |
146 return MP_INPUT_NOTHING; | 146 return MP_INPUT_NOTHING; |
147 } | 147 } |
148 | 148 |
149 #else | 149 #else /* TARGET_LINUX */ |
150 | 150 |
151 // dummy function | 151 // dummy function |
152 | 152 |
153 int mp_input_joystick_init(char* dev) { | 153 int mp_input_joystick_init(char* dev) { |
154 return -1; | 154 return -1; |
157 int mp_input_joystick_read(int fd) { | 157 int mp_input_joystick_read(int fd) { |
158 | 158 |
159 return MP_INPUT_NOTHING; | 159 return MP_INPUT_NOTHING; |
160 } | 160 } |
161 | 161 |
162 #endif | 162 #endif /* TARGET_LINUX */ |