1*36cac86cSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*36cac86cSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*36cac86cSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*36cac86cSAndrew Rist * distributed with this work for additional information 6*36cac86cSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*36cac86cSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*36cac86cSAndrew Rist * "License"); you may not use this file except in compliance 9*36cac86cSAndrew Rist * with the License. You may obtain a copy of the License at 10*36cac86cSAndrew Rist * 11*36cac86cSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*36cac86cSAndrew Rist * 13*36cac86cSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*36cac86cSAndrew Rist * software distributed under the License is distributed on an 15*36cac86cSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*36cac86cSAndrew Rist * KIND, either express or implied. See the License for the 17*36cac86cSAndrew Rist * specific language governing permissions and limitations 18*36cac86cSAndrew Rist * under the License. 19*36cac86cSAndrew Rist * 20*36cac86cSAndrew Rist *************************************************************/ 21*36cac86cSAndrew Rist 22*36cac86cSAndrew Rist 23cdf0e10cSrcweir #include <rtl/unload.h> 24cdf0e10cSrcweir 25cdf0e10cSrcweir namespace io_stm { 26cdf0e10cSrcweir 27cdf0e10cSrcweir extern rtl_StandardModuleCount g_moduleCount; 28cdf0e10cSrcweir 29cdf0e10cSrcweir // OPipeImpl 30cdf0e10cSrcweir Reference< XInterface > SAL_CALL OPipeImpl_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception); 31cdf0e10cSrcweir OUString OPipeImpl_getImplementationName(); 32cdf0e10cSrcweir Sequence<OUString> OPipeImpl_getSupportedServiceNames(void); 33cdf0e10cSrcweir 34cdf0e10cSrcweir Reference< XInterface > SAL_CALL ODataInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception); 35cdf0e10cSrcweir OUString ODataInputStream_getImplementationName(); 36cdf0e10cSrcweir Sequence<OUString> ODataInputStream_getSupportedServiceNames(void); 37cdf0e10cSrcweir 38cdf0e10cSrcweir Reference< XInterface > SAL_CALL ODataOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception); 39cdf0e10cSrcweir OUString ODataOutputStream_getImplementationName(); 40cdf0e10cSrcweir Sequence<OUString> ODataOutputStream_getSupportedServiceNames(void); 41cdf0e10cSrcweir 42cdf0e10cSrcweir Reference< XInterface > SAL_CALL OMarkableOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception); 43cdf0e10cSrcweir OUString OMarkableOutputStream_getImplementationName(); 44cdf0e10cSrcweir Sequence<OUString> OMarkableOutputStream_getSupportedServiceNames(void); 45cdf0e10cSrcweir 46cdf0e10cSrcweir Reference< XInterface > SAL_CALL OMarkableInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception); 47cdf0e10cSrcweir OUString OMarkableInputStream_getImplementationName() ; 48cdf0e10cSrcweir Sequence<OUString> OMarkableInputStream_getSupportedServiceNames(void); 49cdf0e10cSrcweir 50cdf0e10cSrcweir Reference< XInterface > SAL_CALL OObjectOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw(Exception); 51cdf0e10cSrcweir OUString OObjectOutputStream_getImplementationName(); 52cdf0e10cSrcweir Sequence<OUString> OObjectOutputStream_getSupportedServiceNames(void); 53cdf0e10cSrcweir 54cdf0e10cSrcweir Reference< XInterface > SAL_CALL OObjectInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw(Exception); 55cdf0e10cSrcweir OUString OObjectInputStream_getImplementationName() ; 56cdf0e10cSrcweir Sequence<OUString> OObjectInputStream_getSupportedServiceNames(void); 57cdf0e10cSrcweir 58cdf0e10cSrcweir Reference< XInterface > SAL_CALL OPumpImpl_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception); 59cdf0e10cSrcweir OUString OPumpImpl_getImplementationName(); 60cdf0e10cSrcweir Sequence<OUString> OPumpImpl_getSupportedServiceNames(void); 61cdf0e10cSrcweir 62cdf0e10cSrcweir } 63