blob: e070c51c09e80552db8eefdd00554858e76c4302 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* netbeans.c */
Bram Moolenaar446cb832008-06-24 21:56:24 +00002void netbeans_parse_messages __ARGS((void));
Bram Moolenaar67c53842010-05-22 18:28:27 +02003void netbeans_read __ARGS((void));
Bram Moolenaar9964e462007-05-05 17:54:07 +00004int isNetbeansBuffer __ARGS((buf_T *bufp));
5int isNetbeansModified __ARGS((buf_T *bufp));
6void netbeans_end __ARGS((void));
7void ex_nbkey __ARGS((exarg_T *eap));
8void netbeans_beval_cb __ARGS((BalloonEval *beval, int state));
Bram Moolenaar67c53842010-05-22 18:28:27 +02009int netbeans_filedesc __ARGS((void));
10void netbeans_gui_register __ARGS((void));
Bram Moolenaar9964e462007-05-05 17:54:07 +000011void netbeans_startup_done __ARGS((void));
12void netbeans_send_disconnect __ARGS((void));
13void netbeans_frame_moved __ARGS((int new_x, int new_y));
14void netbeans_file_activated __ARGS((buf_T *bufp));
15void netbeans_file_opened __ARGS((buf_T *bufp));
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +000016void netbeans_file_killed __ARGS((buf_T *bufp));
Bram Moolenaar9964e462007-05-05 17:54:07 +000017void netbeans_inserted __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen));
18void netbeans_removed __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, long len));
19void netbeans_unmodified __ARGS((buf_T *bufp));
20void netbeans_button_release __ARGS((int button));
Bram Moolenaar8065d7f2010-01-19 15:13:14 +010021int netbeans_keycommand __ARGS((int key));
Bram Moolenaar9964e462007-05-05 17:54:07 +000022void netbeans_save_buffer __ARGS((buf_T *bufp));
23void netbeans_deleted_all_lines __ARGS((buf_T *bufp));
24int netbeans_is_guarded __ARGS((linenr_T top, linenr_T bot));
25void netbeans_draw_multisign_indicator __ARGS((int row));
26void netbeans_draw_multisign_indicator __ARGS((int row));
27void netbeans_gutter_click __ARGS((linenr_T lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +000028/* vim: set ft=c : */