diff src/vim.h @ 170:8c60f65311fa v7.0052

updated for version 7.0052
author vimboss
date Sat, 26 Feb 2005 23:04:13 +0000
parents c93c9cad9618
children df9a1e1ffecd
line wrap: on
line diff
--- a/src/vim.h
+++ b/src/vim.h
@@ -1533,7 +1533,8 @@ int vim_memcmp __ARGS((void *, void *, s
 #define VV_INSERTMODE	33
 #define VV_VAL		34
 #define VV_KEY		35
-#define VV_LEN		36	/* number of v: vars */
+#define VV_PROFILING	36
+#define VV_LEN		37	/* number of v: vars */
 
 #ifdef FEAT_CLIPBOARD
 
@@ -1620,6 +1621,12 @@ typedef int VimClipboard;	/* This is req
 # endif
 #endif
 
+#ifdef FEAT_PROFILE
+typedef struct timeval proftime_T;
+#else
+typedef int proftime_T;	    /* dummy for function prototypes */
+#endif
+
 #include "option.h"	    /* option variables and defines */
 #include "ex_cmds.h"	    /* Ex command defines */
 #include "proto.h"	    /* function prototypes */
@@ -1865,4 +1872,8 @@ typedef int VimClipboard;	/* This is req
 # define handle_signal(x) 0
 #endif
 
+/* flags for skip_vimgrep_pat() */
+#define VGR_GLOBAL	1
+#define VGR_NOJUMP	2
+
 #endif /* VIM__H */