Updated Spanish translation
[anjuta-git-plugin.git] / plugins / cvs-plugin / cvs-interface.h
blob8ce96480b46719854a3954987d1afe29244534b8
1 /*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU Library General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 #ifndef CVS_INTERFACE_H
18 #define CVS_INTERFACE_H
20 #include "plugin.h"
22 void anjuta_cvs_add (AnjutaPlugin *obj, const gchar* filename,
23 gboolean binary, GError **err);
25 void anjuta_cvs_commit (AnjutaPlugin *obj, const gchar* filename, const gchar* log,
26 const gchar* rev, gboolean recurse, GError **err);
28 void anjuta_cvs_diff (AnjutaPlugin *obj, const gchar* filename, const gchar* rev,
29 gboolean recurse, gboolean patch_style, gboolean unified, GError **err);
31 void anjuta_cvs_log (AnjutaPlugin *obj, const gchar* filename, gboolean recurse, gboolean verbose, GError **err);
33 void anjuta_cvs_remove (AnjutaPlugin *obj, const gchar* filename, GError **err);
35 void anjuta_cvs_status (AnjutaPlugin *obj, const gchar* filename, gboolean recurse, gboolean verbose, GError **err);
37 void anjuta_cvs_update (AnjutaPlugin *obj, const gchar* filename, gboolean recurse,
38 gboolean prune, gboolean create, gboolean reset_sticky, const gchar* revision, GError **err);
40 void anjuta_cvs_import (AnjutaPlugin *obj, const gchar* dir, const gchar* cvsroot,
41 const gchar* module, const gchar* vendor, const gchar* release,
42 const gchar* log, gint server_type, const gchar* username, const
43 gchar* password, GError** error);
45 #endif /* CVS_INTERFACE_H */