summaryrefslogtreecommitdiff
path: root/store/util
diff options
context:
space:
mode:
Diffstat (limited to 'store/util')
-rw-r--r--store/util/makefile.mk79
-rw-r--r--store/util/store.map31
-rw-r--r--store/util/store.xml7
3 files changed, 117 insertions, 0 deletions
diff --git a/store/util/makefile.mk b/store/util/makefile.mk
new file mode 100644
index 000000000000..492f54cfa4f4
--- /dev/null
+++ b/store/util/makefile.mk
@@ -0,0 +1,79 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2010 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org. If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+PRJ=..
+
+PRJNAME=store
+TARGET=store
+TARGETTYPE=CUI
+
+USE_LDUMP2=TRUE
+USE_DEFFILE=TRUE
+
+NO_BSYMBOLIC=TRUE
+NO_DEFAULT_STL=TRUE
+
+UNIXVERSIONNAMES=UDK
+
+# --- Settings ---
+
+.INCLUDE : settings.mk
+
+# --- Debug-Library ---
+
+.IF "$(debug)" != ""
+
+LIB1TARGET= $(LB)$/$(TARGET)dbg.lib
+LIB1ARCHIV= $(LB)$/lib$(TARGET)dbg.a
+LIB1FILES= $(LB)$/store.lib
+
+.ENDIF # debug
+
+# --- Shared-Library ---
+
+SHL1TARGET= $(TARGET)
+SHL1IMPLIB= istore
+
+SHL1VERSIONMAP= $(TARGET).map
+
+SHL1STDLIBS= $(SALLIB)
+
+SHL1DEF= $(MISC)$/$(SHL1TARGET).def
+SHL1LIBS= $(SLB)$/store.lib
+SHL1RPATH= URELIB
+
+# --- Def-File ---
+
+DEF1NAME= $(SHL1TARGET)
+DEF1DES=Store
+
+# --- Targets ---
+
+.INCLUDE : target.mk
+
+
+
diff --git a/store/util/store.map b/store/util/store.map
new file mode 100644
index 000000000000..51fc36048b96
--- /dev/null
+++ b/store/util/store.map
@@ -0,0 +1,31 @@
+UDK_3_0_0 {
+ global:
+ store_acquireHandle;
+ store_attrib;
+ store_closeDirectory;
+ store_closeFile;
+ store_closeStream;
+ store_createMemoryFile;
+ store_findFirst;
+ store_findNext;
+ store_flushFile;
+ store_flushStream;
+ store_getFileRefererCount;
+ store_getFileSize;
+ store_getStreamSize;
+ store_link;
+ store_openDirectory;
+ store_openFile;
+ store_openStream;
+ store_readStream;
+ store_rebuildFile;
+ store_releaseHandle;
+ store_remove;
+ store_rename;
+ store_setStreamSize;
+ store_symlink;
+ store_writeStream;
+ local:
+ *;
+};
+
diff --git a/store/util/store.xml b/store/util/store.xml
new file mode 100644
index 000000000000..0cd8cbef9d2c
--- /dev/null
+++ b/store/util/store.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE module-description PUBLIC "-//StarOffice//DTD ComponentDescription 1.0//EN" "module-description.dtd">
+<module-description xmlns:xlink="http://www.w3.org/1999/xlink">
+ <module-name> store </module-name>
+ <project-build-dependency> sal </project-build-dependency>
+ <runtime-module-dependency> sal </runtime-module-dependency>
+</module-description>