WIP: Experimental new binary type.rdb format

cppuhelper/source/typedescriptionprovider.cxx would read it if it finds .rdb
files in that format.

Throwaway new reg2bin tool for now can translate existing .rdb files into the
new format.

Change-Id: Iacf219c30cfc358c3d31fb0d73966cf2296a4fe5
This commit is contained in:
Stephan Bergmann
2013-01-31 19:06:09 +01:00
parent d9a18176d6
commit 7a9fed14d4
5 changed files with 4488 additions and 22 deletions

View File

@@ -56,6 +56,7 @@ $(eval $(call gb_Helper_register_executables,NONE, \
pdf2xml \
pdfunzip \
propex \
reg2bin \
regsvrex \
renewpo \
rsc \

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,21 @@
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_Executable_Executable,reg2bin))
$(eval $(call gb_Executable_add_exception_objects,reg2bin, \
registry/tools/reg2bin \
))
$(eval $(call gb_Executable_use_libraries,reg2bin, \
reg \
sal \
))
# vim: set noet sw=4 ts=4:

View File

@@ -35,6 +35,7 @@ ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
$(eval $(call gb_Module_add_targets,registry,\
StaticLibrary_registry_helper \
Executable_reg2bin \
Executable_regmerge \
Executable_regview \
Executable_regcompare \

1418
registry/tools/reg2bin.cxx Normal file

File diff suppressed because it is too large Load Diff