summaryrefslogtreecommitdiff
path: root/jvmfwk
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-12-16 10:46:48 +0000
committerKurt Zenker <kz@openoffice.org>2004-12-16 10:46:48 +0000
commit3d4a251eec4313287e6e7120481754b52a53a9c6 (patch)
tree6a9a7bcf8d3a85eb7e03cfb6c53255ad3dcfb66f /jvmfwk
parent45cea9c2ecf256d7c93a5ad50d18c7b65866d619 (diff)
INTEGRATION: CWS jl15 (1.3.12); FILE MERGED
2004/11/24 13:49:45 jl 1.3.12.2: #37225# 2004/11/24 12:43:33 jl 1.3.12.1: #i37225#
Diffstat (limited to 'jvmfwk')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorlist.hxx25
1 files changed, 17 insertions, 8 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.hxx b/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.hxx
index edd2545133ec..3eb351ec0008 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.hxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vendorlist.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2004-08-20 12:33:31 $
+ * last change: $Author: kz $ $Date: 2004-12-16 11:46:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -63,6 +63,7 @@
#include "rtl/ref.hxx"
#include "vendorbase.hxx"
+#include "com/sun/star/uno/Sequence.hxx"
namespace jfw_plugin
{
@@ -72,12 +73,12 @@ namespace jfw_plugin
typedef char const * const * (* getJavaExePaths_func)(int*);
typedef rtl::Reference<VendorBase> (* createInstance_func) ();
-struct Blas
-{
- char const * sVendorName;
- getJavaExePaths_func getJavaFunc;
- createInstance_func createFunc;
-};
+// struct Blas
+// {
+// char const * sVendorName;
+// getJavaExePaths_func getJavaFunc;
+// createInstance_func createFunc;
+// };
struct VendorSupportMapEntry
{
@@ -95,6 +96,14 @@ VendorSupportMapEntry gVendorMap[] ={
#define END_VENDOR_MAP() \
{NULL, NULL, NULL} };
+
+com::sun::star::uno::Sequence<rtl::OUString> getVendorNames();
+
+/* Examines if the vendor supplied in parameter sVendor is part of the
+ list of supported vendors. That is the arry of VendorSupportMapEntry
+ is search for an respective entry.
+*/
+bool isVendorSupported(const rtl::OUString & sVendor);
}
#endif