mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-18 06:06:01 -06:00
18 lines
300 B
C++
18 lines
300 B
C++
#ifndef _PyTest_PyTest_h
|
|
#define _PyTest_PyTest_h
|
|
|
|
//must go first cause has some preprocessor things, says docu
|
|
#include <Python/Python.h>
|
|
|
|
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
void SimpleCall();
|
|
void EmbedPython();
|
|
void ExtendPython();
|
|
|
|
void DestroyNewModule();
|
|
|
|
#endif
|
|
|