540d1708507b467a2aeb56590f8f2df2befe98aa
[reactos.git] / reactos / 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 /* COPYRIGHT: See COPYING in the top level directory
20 * PROJECT: ReactOS hive maker
21 * FILE: tools/mkhive/binhive.c
22 * PURPOSE: Binary hive export code
23 * PROGRAMMER: Hervé Poussineau
24 */
25
26 /* INCLUDES *****************************************************************/
27
28 #include <stdio.h>
29
30 #include "mkhive.h"
31
32 BOOL
33 ExportBinaryHive(
34 IN PCSTR FileName,
35 IN PCMHIVE Hive)
36 {
37 FILE *File;
38 BOOL ret;
39
40 printf (" Creating binary hive: %s\n", FileName);
41
42 /* Create new hive file */
43 File = fopen (FileName, "w+b");
44 if (File == NULL)
45 {
46 printf(" Error creating/opening file\n");
47 return FALSE;
48 }
49
50 fseek (File, 0, SEEK_SET);
51
52 Hive->FileHandles[HFILE_TYPE_PRIMARY] = (HANDLE)File;
53 ret = HvWriteHive(&Hive->Hive);
54 fclose (File);
55 return ret;
56 }
57
58 /* EOF */