Bump version to 5.0-14
[LibreOffice.git] / xmlsecurity / source / xmlsec / errorcallback.cxx
blobb2dcf6a6df12fad526d0077fb26b3c6c172d8324
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 * Implementation of the I/O interfaces based on stream and URI binding
24 #include "errorcallback.hxx"
26 #include "xmlsecurity/xmlsec-wrapper.h"
28 using namespace ::com::sun::star::xml::crypto;
31 extern "C"
32 void errorCallback(const char * /*file*/,
33 int /*line*/,
34 const char * /*func*/,
35 const char * /*errorObject*/,
36 const char * /*errorSubject*/,
37 int /*reason*/,
38 const char * /*msg*/)
40 #if OSL_DEBUG_LEVEL > 1
41 // const char * afunc = func ? func : "";
42 // const char * errObj = errorObject ? errorObject : "";
43 // const char * errSub = errorSubject ? errorSubject : "";
44 // const char * amsg = msg ? msg : "";
45 // fprintf(stdout, "xmlsec error: %s, %s, %s, %i %s \n", afunc, errObj, errSub, reason, amsg);
46 #endif
49 void setErrorRecorder()
51 xmlSecErrorsSetCallback(errorCallback);
54 void clearErrorRecorder()
56 xmlSecErrorsSetCallback(NULL);
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */