summaryrefslogtreecommitdiff
path: root/src/integration.h
diff options
context:
space:
mode:
authorBram Moolenaar <bram@zimbu.org>2010-05-15 13:56:02 +0200
committerBram Moolenaar <bram@zimbu.org>2010-05-15 13:56:02 +0200
commita3ae3591c288f549ec1c13c611690c5fa8b6a88d (patch)
tree7f95909551f0f2169cfcb034a07dc822e7a5d1c4 /src/integration.h
parent7923d76778ea3bf36799d24f9bb6f0f1e4feb391 (diff)
downloadvim-a3ae3591c288f549ec1c13c611690c5fa8b6a88d.tar.gz
First step in the Vim 7.3 branch. Changed version numbers.
Diffstat (limited to 'src/integration.h')
-rw-r--r--src/integration.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/integration.h b/src/integration.h
index d6c687d4..e984f56c 100644
--- a/src/integration.h
+++ b/src/integration.h
@@ -283,23 +283,26 @@ void workshop_file_opened(char *filename, int readOnly);
void workshop_file_saved(char *filename);
+#if 0
/* A file has been closed */
void workshop_file_closed(char *filename);
+#endif
/* Like workshop_file_closed, but also inform eserve what line the
cursor was on when you left the file. That way eserve can put you
back where you left off when you return to this file. */
void workshop_file_closed_lineno(char *filename, int line);
+#if 0
/* A file has been modified */
void workshop_file_modified(char *filename);
-
/*
* A mark has been moved. Only call this as a response to
* a workshop_moved_marks request call.
*/
void workshop_move_mark(char *filename, int markId, int newLineno);
+#endif
/* Tell the integration library about a new frame being added.
* Supply a form for the toolbar, a label for the footer, and an
@@ -377,7 +380,9 @@ int workshop_get_balloon_text(Position x, Position y,
*/
void workshop_frame_moved(int new_x, int new_y, int new_w, int new_h);
Boolean workshop_get_width_height(int *, int *);
+#if 0
Boolean workshop_get_rows_cols(int *, int *);
+#endif
/* This function should be invoked when you press a hotkey
* set up by workshop_register_hotkey. Pass the clientData
@@ -396,20 +401,23 @@ void workshop_hotkey_pressed(void *frame, void *clientData);
*
*/
+#if 0
/* Were we invoked by WorkShop? This function can be used early during startup
* if you want to do things differently if the editor is started standalone
* or in WorkShop mode. For example, in standalone mode you may not want to
* add a footer/message area or a sign gutter.
*/
int workshop_invoked(void);
+#endif
+#if 0
/*
*Set the desktop icon of the current shell to the given xpm icon.
* Standard WorkShop desktop icons should be 48x48.
*/
-
void workshop_set_icon(Display *display, Widget shell, char **xpmdata,
int width, int height);
+#endif
/* Minimize (iconify) the given shell */