Files
test2/intern/audaspace/intern/AUD_PyInit.h
Campbell Barton fe55789b6f File headers: manually convert files to use SPDX headers
Also add BSD-2-Clause to SPDX license list.
2022-02-11 15:15:49 +11:00

30 lines
425 B
C

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2009-2011 Jörg Hermann Müller. */
/** \file
* \ingroup audaspaceintern
*/
#ifndef __AUD_PYINIT_H__
#define __AUD_PYINIT_H__
#ifdef WITH_PYTHON
# include "Python.h"
# ifdef __cplusplus
extern "C" {
# endif
/**
* Initializes the Python module.
*/
extern PyObject *AUD_initPython(void);
# ifdef __cplusplus
}
# endif
#endif
#endif //__AUD_PYINIT_H__