[MKHIVE]: Implement CmpFileRead().
[reactos.git] / reactos / sdk / tools / mkhive / binhive.c
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2006 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
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.
18 */
19 /*
20 * COPYRIGHT: See COPYING in the top level directory
21 * PROJECT: ReactOS hive maker
22 * FILE: tools/mkhive/binhive.c
23 * PURPOSE: Binary hive export code
24 * PROGRAMMER: Hervé Poussineau
25 */
26
27 /* INCLUDES *****************************************************************/
28
29 #include <stdio.h>
30
31 #include "mkhive.h"
32
33 BOOL
34 ExportBinaryHive(
35 IN PCSTR FileName,
36 IN PCMHIVE Hive)
37 {
38 FILE *File;
39 BOOL ret;
40
41 printf (" Creating binary hive: %s\n", FileName);
42
43 /* Create new hive file */
44 File = fopen (FileName, "w+b");
45 if (File == NULL)
46 {
47 printf(" Error creating/opening file\n");
48 return FALSE;
49 }
50
51 fseek (File, 0, SEEK_SET);
52
53 Hive->FileHandles[HFILE_TYPE_PRIMARY] = (HANDLE)File;
54 ret = HvWriteHive(&Hive->Hive);
55 fclose (File);
56 return ret;
57 }
58
59 /* EOF */