Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/./include/openscap/oscap_export.h
Real path: /usr/include/openscap/oscap_export.h
Zurück
/* * Copyright 2017 Red Hat Inc., Durham, North Carolina. * All Rights Reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Authors: * Jan Černý <jcerny@redhat.com> */ #ifndef OSCAP_API_H #define OSCAP_API_H /** * OSCAP_API macro * * OSCAP_API is a macro that marks every public function in OpenSCAP API. * Functions marked with OSCAP_API will be exported to the shared library * interface. */ #ifndef OSCAP_API # if defined(_WIN32) && defined(_MSC_VER) # ifdef OSCAP_BUILD_SHARED /* build DLL */ # define OSCAP_API __declspec(dllexport) # else /* use DLL */ # define OSCAP_API __declspec(dllimport) # endif # else # if __GNUC__ >= 4 # define OSCAP_API __attribute__((visibility("default"))) # else # define OSCAP_API # endif # endif #endif #endif