7
|
1 /* if_xcmdsrv.c */
|
1125
|
2 int serverRegisterName __ARGS((Display *dpy, char_u *name));
|
|
3 void serverChangeRegisteredWindow __ARGS((Display *dpy, Window newwin));
|
|
4 int serverSendToVim __ARGS((Display *dpy, char_u *name, char_u *cmd, char_u **result, Window *server, int asExpr, int localLoop, int silent));
|
|
5 char_u *serverGetVimNames __ARGS((Display *dpy));
|
|
6 Window serverStrToWin __ARGS((char_u *str));
|
|
7 int serverSendReply __ARGS((char_u *name, char_u *str));
|
|
8 int serverReadReply __ARGS((Display *dpy, Window win, char_u **str, int localLoop));
|
|
9 int serverPeekReply __ARGS((Display *dpy, Window win, char_u **str));
|
|
10 void serverEventProc __ARGS((Display *dpy, XEvent *eventPtr));
|
7
|
11 /* vim: set ft=c : */
|