blob: 30647539ee1cf1c6fc5e3edb1339f13d012cecae [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* if_xcmdsrv.c */
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00002int serverRegisterName __ARGS((Display *dpy, char_u *name));
3void serverChangeRegisteredWindow __ARGS((Display *dpy, Window newwin));
4int serverSendToVim __ARGS((Display *dpy, char_u *name, char_u *cmd, char_u **result, Window *server, int asExpr, int localLoop, int silent));
5char_u *serverGetVimNames __ARGS((Display *dpy));
6Window serverStrToWin __ARGS((char_u *str));
7int serverSendReply __ARGS((char_u *name, char_u *str));
8int serverReadReply __ARGS((Display *dpy, Window win, char_u **str, int localLoop));
9int serverPeekReply __ARGS((Display *dpy, Window win, char_u **str));
Bram Moolenaar93c88e02015-09-15 14:12:05 +020010void serverEventProc __ARGS((Display *dpy, XEvent *eventPtr, int immediate));
11void server_parse_messages __ARGS((void));
12int server_waiting __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013/* vim: set ft=c : */