Die Suche ergab 1 Treffer

von Trokhon
Samstag 5. Februar 2011, 16:02
Forum: wxPython
Thema: Visual Studio C++ Commandline und wxPython
Antworten: 1
Zugriffe: 3545

Visual Studio C++ Commandline und wxPython

Ich hab folgendes versucht
VisualStudio 2010 , C++ Commandline Anwendung und Python 2.7 mit wxPython2.8-win32-ansi-2.8.11.0-py27 alles 32 bit


#include <Python.h>


int main(int argc, char *argv[])
{
PyObject *pName, *pModule, *pDict, *pFunc, *pValue;
PyObject *mod;

Py_Initialize();
PyRun ...