diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-06 22:05:07 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-06 22:05:07 +0200 |
commit | 8e97bd74b5377753597e3d98e7123d8985c7fffd (patch) | |
tree | 25d909a542f5a015aa92d00512e46f1fb72f1ab4 /src/proto | |
parent | 446cce6d537b036467033975a86729dbdc83f860 (diff) | |
download | vim-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.pro | 2 |
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); |