diff options
Diffstat (limited to 'Include/pystate.h')
-rw-r--r-- | Include/pystate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/pystate.h b/Include/pystate.h index 533851f..60d001c 100644 --- a/Include/pystate.h +++ b/Include/pystate.h @@ -64,6 +64,8 @@ typedef struct { wchar_t *module_search_path_env; /* PYTHONHOME environment variable, see also Py_SetPythonHome(). */ wchar_t *home; + /* Program name, see also Py_GetProgramName() */ + wchar_t *program_name; } _PyMainInterpreterConfig; #define _PyMainInterpreterConfig_INIT \ |