diff options
author | rbuj <[email protected]> | 2019-12-31 16:23:35 +0100 |
---|---|---|
committer | lukefromdc <[email protected]> | 2020-03-10 05:15:02 +0000 |
commit | 767517e2ec741f69e29a3af8f8bb0dd2abee6e81 (patch) | |
tree | d95a15d67d86f4bc4a3ddd16d943df7fd6ba461b /src/fr-command-nomarch.h | |
parent | 144ac2fb1395a76a04773c577965a8754f2dab3b (diff) | |
download | engrampa-767517e2ec741f69e29a3af8f8bb0dd2abee6e81.tar.bz2 engrampa-767517e2ec741f69e29a3af8f8bb0dd2abee6e81.tar.xz |
Add ARC archive support
Diffstat (limited to 'src/fr-command-nomarch.h')
-rw-r--r-- | src/fr-command-nomarch.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/fr-command-nomarch.h b/src/fr-command-nomarch.h new file mode 100644 index 0000000..820d795 --- /dev/null +++ b/src/fr-command-nomarch.h @@ -0,0 +1,54 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ + +/* + * Engrampa + * + * Copyright (C) 2001, 2003 Free Software Foundation, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef FR_COMMAND_NOMARCH_H +#define FR_COMMAND_NOMARCH_H + +#include <glib.h> +#include "fr-command.h" +#include "fr-process.h" + +#define FR_TYPE_COMMAND_NOMARCH (fr_command_nomarch_get_type ()) +#define FR_COMMAND_NOMARCH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), FR_TYPE_COMMAND_NOMARCH, FrCommandNomarch)) +#define FR_COMMAND_NOMARCH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), FR_TYPE_COMMAND_NOMARCH, FrCommandNomarchClass)) +#define FR_IS_COMMAND_NOMARCH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), FR_TYPE_COMMAND_NOMARCH)) +#define FR_IS_COMMAND_NOMARCH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), FR_TYPE_COMMAND_NOMARCH)) +#define FR_COMMAND_NOMARCH_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), FR_TYPE_COMMAND_NOMARCH, FrCommandNomarchClass)) + +typedef struct _FrCommandNomarch FrCommandNomarch; +typedef struct _FrCommandNomarchClass FrCommandNomarchClass; + +struct _FrCommandNomarch +{ + FrCommand __parent; + + FileData *fdata; +}; + +struct _FrCommandNomarchClass +{ + FrCommandClass __parent_class; +}; + +GType fr_command_nomarch_get_type (void); + +#endif /* FR_COMMAND_NOMARCH_H */ |