38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/*
|
|
* GDSII-Converter Python Plugin
|
|
* Copyright (C) 2019 Mario Hüttel <mario.huettel@gmx.net>
|
|
*
|
|
* This file is part of GDSII-Converter.
|
|
*
|
|
* GDSII-Converter is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* GDSII-Converter 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GDSII-Converter. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* @file python-renderer/force-fork.c
|
|
* @author Mario Hüttel <mario.huettel@gmx.net>
|
|
*/
|
|
|
|
#include <python-renderer/force-fork.h>
|
|
|
|
/**
|
|
* @addtogroup python-plugin
|
|
* @{
|
|
*/
|
|
|
|
/* The precense of this variable tells the gds-render application to execute this plugin in a separate process
|
|
* The variable's value is don't care
|
|
*/
|
|
const int EXPORTED_VAR_DECL(EXTERNAL_LIBRARY_FORK_REQUEST) = 1;
|
|
|
|
/** @} */
|