Blame common/runtime.h

Packit ce73f7
/*
Packit ce73f7
 * Copyright (c) 2018 Red Hat Inc
Packit ce73f7
 *
Packit ce73f7
 * Redistribution and use in source and binary forms, with or without
Packit ce73f7
 * modification, are permitted provided that the following conditions
Packit ce73f7
 * are met:
Packit ce73f7
 *
Packit ce73f7
 *     * Redistributions of source code must retain the above
Packit ce73f7
 *       copyright notice, this list of conditions and the
Packit ce73f7
 *       following disclaimer.
Packit ce73f7
 *     * Redistributions in binary form must reproduce the
Packit ce73f7
 *       above copyright notice, this list of conditions and
Packit ce73f7
 *       the following disclaimer in the documentation and/or
Packit ce73f7
 *       other materials provided with the distribution.
Packit ce73f7
 *     * The names of contributors to this software may not be
Packit ce73f7
 *       used to endorse or promote products derived from this
Packit ce73f7
 *       software without specific prior written permission.
Packit ce73f7
 *
Packit ce73f7
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit ce73f7
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit ce73f7
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
Packit ce73f7
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
Packit ce73f7
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
Packit ce73f7
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
Packit ce73f7
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
Packit ce73f7
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
Packit ce73f7
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit ce73f7
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
Packit ce73f7
 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
Packit ce73f7
 * DAMAGE.
Packit ce73f7
 *
Packit ce73f7
 * Author: Daiki Ueno
Packit ce73f7
 */
Packit ce73f7
Packit ce73f7
#ifndef __RUNTIME_H__
Packit ce73f7
#define __RUNTIME_H__
Packit ce73f7
Packit ce73f7
#include "pkcs11.h"
Packit ce73f7
Packit ce73f7
CK_RV p11_get_runtime_directory (char **directoryp);
Packit ce73f7
Packit ce73f7
#endif /* __RUNTIME_H__ */