diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-29 23:15:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-29 23:15:25 +0100 |
commit | 310c32e8920140f0db747c6c6eb06b1ee53cdb5a (patch) | |
tree | 6a63306e6627614a8f3b9b543f129323f3093f86 /src/proto.h | |
parent | 15a7bdcb77faabbd3a9a889957f810da2bcda13e (diff) | |
download | vim-git-310c32e8920140f0db747c6c6eb06b1ee53cdb5a.tar.gz |
patch 8.1.2361: MS-Windows: test failures related to VIMDLLv8.1.2361
Problem: MS-Windows: test failures related to VIMDLL.
Solution: Adjust code and tests. (Ken Takata, closes #5283)
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h index 452f9e22f..c358a1d02 100644 --- a/src/proto.h +++ b/src/proto.h @@ -177,6 +177,11 @@ void qsort(void *base, size_t elm_count, size_t elm_size, int (*cmp)(const void # include "mouse.pro" # include "move.pro" # include "mbyte.pro" +# ifdef VIMDLL +// Function name differs when VIMDLL is defined +int mbyte_im_get_status(void); +void mbyte_im_set_active(int active_arg); +# endif # include "normal.pro" # include "ops.pro" # include "option.pro" |