1*ec61c6edSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*ec61c6edSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*ec61c6edSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*ec61c6edSAndrew Rist * distributed with this work for additional information 6*ec61c6edSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*ec61c6edSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*ec61c6edSAndrew Rist * "License"); you may not use this file except in compliance 9*ec61c6edSAndrew Rist * with the License. You may obtain a copy of the License at 10*ec61c6edSAndrew Rist * 11*ec61c6edSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*ec61c6edSAndrew Rist * 13*ec61c6edSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*ec61c6edSAndrew Rist * software distributed under the License is distributed on an 15*ec61c6edSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*ec61c6edSAndrew Rist * KIND, either express or implied. See the License for the 17*ec61c6edSAndrew Rist * specific language governing permissions and limitations 18*ec61c6edSAndrew Rist * under the License. 19*ec61c6edSAndrew Rist * 20*ec61c6edSAndrew Rist *************************************************************/ 21*ec61c6edSAndrew Rist 22*ec61c6edSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _XMLSTREAMIO_XMLSECIMPL_HXX_ 25cdf0e10cSrcweir #define _XMLSTREAMIO_XMLSECIMPL_HXX_ 26cdf0e10cSrcweir 27cdf0e10cSrcweir #ifndef _COM_SUN_STAR_UNO_REFERENCE_HPP_ 28cdf0e10cSrcweir #include <com/sun/star/uno/Reference.hxx> 29cdf0e10cSrcweir #endif 30cdf0e10cSrcweir #include <com/sun/star/xml/crypto/XUriBinding.hpp> 31cdf0e10cSrcweir 32cdf0e10cSrcweir int xmlEnableStreamInputCallbacks( void ) ; 33cdf0e10cSrcweir void xmlDisableStreamInputCallbacks( void ) ; 34cdf0e10cSrcweir 35cdf0e10cSrcweir int xmlRegisterStreamInputCallbacks( 36cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::xml::crypto::XUriBinding >& aUriBinding 37cdf0e10cSrcweir ) ; 38cdf0e10cSrcweir 39cdf0e10cSrcweir int xmlUnregisterStreamInputCallbacks( void ) ; 40cdf0e10cSrcweir 41cdf0e10cSrcweir #endif //_XMLSTREAMIO_XMLSECIMPL_HXX_ 42cdf0e10cSrcweir 43