summaryrefslogtreecommitdiffstats
path: root/include/telephony/ril.h
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2010-10-07 16:35:15 -0700
committerWink Saville <wink@google.com>2010-10-07 16:35:15 -0700
commit2932f31296822b86ed945e09cadaabf2a453843c (patch)
treeee425d087b7f65c70c07f8e7233516cac131d68d /include/telephony/ril.h
parenta4f9cab81d7a97e6489f1a1629d5c40ce6058477 (diff)
downloadandroid_hardware_ril-2932f31296822b86ed945e09cadaabf2a453843c.tar.gz
android_hardware_ril-2932f31296822b86ed945e09cadaabf2a453843c.tar.bz2
android_hardware_ril-2932f31296822b86ed945e09cadaabf2a453843c.zip
Revert "Add timer delete support to rild" DO NOT MERGE
This reverts commit 7edd07c9184a3abfaa3f4a161b74b3da9d7bbd56. We need to revert here as this change is not in Gingerbread or later branches. Change-Id: I1b0d68655e3a91647f455cbc43f421db39f9aa55
Diffstat (limited to 'include/telephony/ril.h')
-rw-r--r--include/telephony/ril.h19
1 files changed, 3 insertions, 16 deletions
diff --git a/include/telephony/ril.h b/include/telephony/ril.h
index 82d2ca3..4bd9442 100644
--- a/include/telephony/ril.h
+++ b/include/telephony/ril.h
@@ -3481,14 +3481,8 @@ struct RIL_Env {
* soon as possible
*/
- void* (*RequestTimedCallback) (RIL_TimedCallback callback,
+ void (*RequestTimedCallback) (RIL_TimedCallback callback,
void *param, const struct timeval *relativeTime);
-
-
- /**
- * Remove user-specified callback function
- */
- void (*RemoveTimedCallback) (void *callbackInfo);
};
@@ -3552,15 +3546,8 @@ void RIL_onUnsolicitedResponse(int unsolResponse, const void *data,
* @param relativeTime a relative time value at which the callback is invoked
*/
-void* RIL_requestTimedCallback (RIL_TimedCallback callback,
- void *param, const struct timeval *relativeTime);
-
-/**
- * Remove user-specified callback function
- * @param callbackInfo Pointer returned to the caller when timer was scheduled
- */
-
-void RIL_removeTimedCallback(void *callbackInfo);
+void RIL_requestTimedCallback (RIL_TimedCallback callback,
+ void *param, const struct timeval *relativeTime);
#endif /* RIL_SHLIB */