ReactOS 0.4.15-dev-7907-g95bf896
binhive.c
Go to the documentation of this file.
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 "mkhive.h"
30
31/* FUNCTIONS ****************************************************************/
32
33BOOL
36 IN PCMHIVE CmHive)
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, "wb");
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 CmHive->FileHandles[HFILE_TYPE_PRIMARY] = (HANDLE)File;
54 ret = HvWriteHive(&CmHive->Hive);
55 fclose(File);
56 return ret;
57}
58
59/* EOF */
BOOL ExportBinaryHive(IN PCSTR FileName, IN PCMHIVE CmHive)
Definition: binhive.c:34
Definition: File.h:16
BOOLEAN CMAPI HvWriteHive(PHHIVE RegistryHive)
#define NULL
Definition: types.h:112
#define FALSE
Definition: types.h:117
unsigned int BOOL
Definition: ntddk_ex.h:94
#define printf
Definition: freeldr.h:93
#define HFILE_TYPE_PRIMARY
Definition: hivedata.h:33
_Check_return_ _CRTIMP FILE *__cdecl fopen(_In_z_ const char *_Filename, _In_z_ const char *_Mode)
_Check_return_opt_ _CRTIMP int __cdecl fseek(_Inout_ FILE *_File, _In_ long _Offset, _In_ int _Origin)
_Check_return_opt_ _CRTIMP int __cdecl fclose(_Inout_ FILE *_File)
#define SEEK_SET
Definition: jmemansi.c:26
Definition: cmlib.h:316
PVOID HANDLE
Definition: typedefs.h:73
const char * PCSTR
Definition: typedefs.h:52
#define IN
Definition: typedefs.h:39
int ret