11 lines
163 B
C
11 lines
163 B
C
|
#ifndef __python_h
|
||
|
#define __python_h
|
||
|
|
||
|
void python_startup();
|
||
|
void python_shutdown();
|
||
|
|
||
|
/*! Import a python module */
|
||
|
gboolean python_import(char *module);
|
||
|
|
||
|
#endif
|