fix documentation of --compare
[metastore.git] / metastore.h
blob7bc786838661b4fb88a660d977565c5b8c6f472c
1 /*
2 * Main functions of the program.
4 * Copyright (C) 2007 David Härdeman <david@hardeman.nu>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 /* Each file starts with SIGNATURE and VERSION */
22 #define SIGNATURE "MeTaSt00r3"
23 #define SIGNATURELEN 10
24 #define VERSION "\0\0\0\0\0\0\0\0"
25 #define VERSIONLEN 8
27 /* Default filename */
28 #define METAFILE "./.metadata"
30 /* Utility defines for the action to take */
31 #define ACTION_DIFF 0x01
32 #define ACTION_SAVE 0x02
33 #define ACTION_APPLY 0x04
34 #define ACTION_HELP 0x08