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