1 // -*- mode: C++; c-file-style: "cc-mode" -*-
2 //*************************************************************************
3 //
4 // Copyright 2020 by Yutetsu TAKATSUKASA. This program is free software; you can
5 // redistribute it and/or modify it under the terms of either the GNU
6 // Lesser General Public License Version 3 or the Perl Artistic License
7 // Version 2.0.
8 // SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
9 //
10 //*************************************************************************
11 
12 extern "C" int dpi_export_func(int);
13 
dpi_import_func(int v)14 extern "C" int dpi_import_func(int v) { return dpi_export_func(v) - 1; }
15