aboutsummaryrefslogtreecommitdiffstats
path: root/src/android.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/android.h')
-rw-r--r--src/android.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/android.h b/src/android.h
index ed0089ad94e..450f3859df9 100644
--- a/src/android.h
+++ b/src/android.h
@@ -160,6 +160,18 @@ struct android_battery_state
160 but is not charging either. 160 but is not charging either.
161 1, if the battery state is unknown. */ 161 1, if the battery state is unknown. */
162 int status; 162 int status;
163
164 /* The power source of the battery. Value is:
165
166 0, if on battery power.
167 1, for line power.
168 8, for dock power.
169 2, for USB power.
170 4, for wireless power. */
171 int plugged;
172
173 /* The temperature of the battery in 10 * degrees centigrade. */
174 int temperature;
163}; 175};
164 176
165extern Lisp_Object android_browse_url (Lisp_Object); 177extern Lisp_Object android_browse_url (Lisp_Object);