summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-06 22:05:07 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-06 22:05:07 +0200
commit8e97bd74b5377753597e3d98e7123d8985c7fffd (patch)
tree25d909a542f5a015aa92d00512e46f1fb72f1ab4 /src/proto
parent446cce6d537b036467033975a86729dbdc83f860 (diff)
downloadvim-git-8e97bd74b5377753597e3d98e7123d8985c7fffd.tar.gz
patch 7.4.2170v7.4.2170
Problem: Cannot get information about timers. Solution: Add timer_info().
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/ex_cmds2.pro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro
index c7a860b9f..977f5c0de 100644
--- a/src/proto/ex_cmds2.pro
+++ b/src/proto/ex_cmds2.pro
@@ -22,6 +22,8 @@ timer_T *create_timer(long msec, int repeat);
long check_due_timer(void);
timer_T *find_timer(int id);
void stop_timer(timer_T *timer);
+void add_timer_info(typval_T *rettv, timer_T *timer);
+void add_timer_info_all(typval_T *rettv);
int set_ref_in_timer(int copyID);
void timer_free_all(void);
void profile_divide(proftime_T *tm, int count, proftime_T *tm2);