Exemplo n.º 1
0
 [DllImport(svnclientlib)] static extern IntPtr svn_client_status2(IntPtr svn_revnum_t, string path, ref Rev revision,
                                                                   svn_wc_status_func2_t status_func, IntPtr status_baton,
                                                                   [MarshalAs(UnmanagedType.Bool)] bool recurse,
                                                                   [MarshalAs(UnmanagedType.Bool)] bool get_all,
                                                                   [MarshalAs(UnmanagedType.Bool)] bool update,
                                                                   [MarshalAs(UnmanagedType.Bool)] bool no_ignore,
                                                                   [MarshalAs(UnmanagedType.Bool)] bool ignore_externals,
                                                                   IntPtr ctx, IntPtr pool);
Exemplo n.º 2
0
 public override IntPtr client_status(IntPtr result_rev, string path, ref Rev revision,
                                      svn_wc_status_func2_t status_func, IntPtr status_baton,
                                      bool recurse, bool get_all, bool update, bool no_ignore,
                                      bool ignore_externals, IntPtr ctx, IntPtr pool)
 {
     return(svn_client_status2(result_rev, path, ref revision, status_func,
                               status_baton, recurse, get_all, update,
                               no_ignore, ignore_externals, ctx, pool));
 }
Exemplo n.º 3
0
		[DllImport(svnclientlib)] static extern IntPtr svn_client_status2 (IntPtr svn_revnum_t, string path, ref Rev revision,
		                                                                   svn_wc_status_func2_t status_func, IntPtr status_baton,
		                                                                   [MarshalAs (UnmanagedType.Bool)] bool recurse,
		                                                                   [MarshalAs (UnmanagedType.Bool)] bool get_all,
		                                                                   [MarshalAs (UnmanagedType.Bool)] bool update,
		                                                                   [MarshalAs (UnmanagedType.Bool)] bool no_ignore,
		                                                                   [MarshalAs (UnmanagedType.Bool)] bool ignore_externals,
		                                                                   IntPtr ctx, IntPtr pool);
Exemplo n.º 4
0
		public override IntPtr client_status (IntPtr result_rev, string path, ref Rev revision,
		                                      svn_wc_status_func2_t status_func, IntPtr status_baton,
		                                      bool recurse, bool get_all, bool update, bool no_ignore,
		                                      bool ignore_externals, IntPtr ctx, IntPtr pool)
		{
			return svn_client_status2 (result_rev, path, ref revision, status_func,
			                           status_baton, recurse, get_all, update,
			                           no_ignore, ignore_externals, ctx, pool);
		}
Exemplo n.º 5
0
 public abstract IntPtr client_status(IntPtr result_rev, string path, ref Rev revision,
                                      svn_wc_status_func2_t status_func, IntPtr status_baton,
                                      bool recurse, bool get_all, bool update, bool no_ignore,
                                      bool ignore_externals, IntPtr ctx, IntPtr pool);
Exemplo n.º 6
0
		public abstract IntPtr client_status (IntPtr result_rev, string path, ref Rev revision,
		                                      svn_wc_status_func2_t status_func, IntPtr status_baton,
		                                      bool recurse, bool get_all, bool update, bool no_ignore,
		                                      bool ignore_externals, IntPtr ctx, IntPtr pool);