blob: 000ccb4b62bdfbaeb866116ee519041109fff6e0 [file] [log] [blame]
Radek Krejci5902be92021-03-25 21:25:14 +01001/**
aPiecek023f83a2021-05-11 07:37:03 +02002 * @file invalid.c
Radek Krejci5902be92021-03-25 21:25:14 +01003 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Invalid testing plugins implementation
5 *
6 * Copyright (c) 2021 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#include <stdint.h>
16
17#include "libyang.h"
18#include "plugins_exts.h"
19#include "plugins_types.h"
20
21/*
22 * EXTENSION PLUGIN
23 */
24
25/**
26 * @brief Instead of plugin description, only the API version is declared.
27 *
28 * Here should be LY_PLUGINS_EXTENSIONS used.
29 */
30uint32_t plugins_extensions_apiver__ = LYPLG_EXT_API_VERSION;
31
32/*
33 * TYPE PLUGIN
34 */
35
36/**
37 * @brief Instead of plugin description, only the API version is declared.
38 *
39 * Here should be LYPLG_TYPES used.
40 */
41uint32_t plugins_types_apiver__ = LYPLG_TYPE_API_VERSION;