summaryrefslogtreecommitdiff
path: root/testtools/com
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-09 11:22:47 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-09 11:22:47 +0000
commit2cc93b0ba3f639fbc8f722872b3ed26035784141 (patch)
tree90f2b9129c9811e452cc48d5747930b4c05f908d /testtools/com
parent85cc920f24f6f8e580a5f390d8077bb6bccc0ae9 (diff)
add three byte structure return test for the MacOSX/BSD quirk
Diffstat (limited to 'testtools/com')
-rw-r--r--testtools/com/sun/star/comp/bridge/TestComponent.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/testtools/com/sun/star/comp/bridge/TestComponent.java b/testtools/com/sun/star/comp/bridge/TestComponent.java
index 25e3b3a7099a..6953a4da90da 100644
--- a/testtools/com/sun/star/comp/bridge/TestComponent.java
+++ b/testtools/com/sun/star/comp/bridge/TestComponent.java
@@ -50,6 +50,7 @@ import test.testtools.bridgetest.BigStruct;
import test.testtools.bridgetest.TwoFloats;
import test.testtools.bridgetest.FourFloats;
import test.testtools.bridgetest.MixedFloatAndInteger;
+import test.testtools.bridgetest.ThreeByteStruct;
import test.testtools.bridgetest.XBridgeTest;
import test.testtools.bridgetest.XBridgeTest2;
import test.testtools.bridgetest.XCurrentContextChecker;
@@ -502,6 +503,10 @@ public class TestComponent {
return i_Struct;
}
+ public ThreeByteStruct echoThreeByteStruct( ThreeByteStruct i_Struct) throws com.sun.star.uno.RuntimeException {
+ return i_Struct;
+ }
+
public int testPPCAlignment( long l1, long l2, int i1, long l3, int i2 ) throws com.sun.star.uno.RuntimeException {
return i2;
}