aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/msofficecomm/OutOfProcessServer.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/plugin/msofficecomm/OutOfProcessServer.java')
-rw-r--r--src/net/java/sip/communicator/plugin/msofficecomm/OutOfProcessServer.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/msofficecomm/OutOfProcessServer.java b/src/net/java/sip/communicator/plugin/msofficecomm/OutOfProcessServer.java
new file mode 100644
index 0000000..7947f64
--- /dev/null
+++ b/src/net/java/sip/communicator/plugin/msofficecomm/OutOfProcessServer.java
@@ -0,0 +1,27 @@
+/*
+ * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license.
+ * See terms of license at gnu.org.
+ */
+package net.java.sip.communicator.plugin.msofficecomm;
+
+class OutOfProcessServer
+{
+ static
+ {
+ System.loadLibrary("jmsofficecomm");
+ }
+
+ static native int start();
+
+ static native int stop();
+
+ /**
+ * Prevents the initialization of a new <tt>OutOfProcessServer</tt>
+ * instance.
+ */
+ private OutOfProcessServer()
+ {
+ }
+}