Fix prof module init for python3

This commit is contained in:
James Booth
2016-07-18 01:27:23 +01:00
parent ace2715cf7
commit 7d742f704f
5 changed files with 52 additions and 29 deletions

View File

@@ -35,8 +35,10 @@
#ifndef PYTHON_API_H
#define PYTHON_API_H
#include <Python.h>
void python_env_init(void);
void python_api_init(void);
PyMODINIT_FUNC python_api_init(void);
void python_shutdown(void);
void python_command_callback(PluginCommand *command, gchar **args);