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