#include "stdafx.h" #undef _DEBUG /* Link with python24.lib and not python24_d.lib */ #include "Python.h" int main(int argc, char *argv[]) { int i; PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pValue; if (argc < 3) { printf("Usage: exe_name python_source function_name\n"); return 1; } // Initialize the Python Interpreter Py_Initialize(); return 0; }
__imp__Py_Initialize
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)