@@ -35,7 +35,6 @@ static Delegates()
35
35
PyGILState_Ensure = ( delegate * unmanaged[ Cdecl] < PyGILState > ) GetFunctionByName ( nameof ( PyGILState_Ensure ) , GetUnmanagedDll ( _PythonDll ) ) ;
36
36
PyGILState_Release = ( delegate * unmanaged[ Cdecl] < PyGILState , void > ) GetFunctionByName ( nameof ( PyGILState_Release ) , GetUnmanagedDll ( _PythonDll ) ) ;
37
37
PyGILState_GetThisThreadState = ( delegate * unmanaged[ Cdecl] < PyThreadState * > ) GetFunctionByName ( nameof ( PyGILState_GetThisThreadState ) , GetUnmanagedDll ( _PythonDll ) ) ;
38
- Py_Main = ( delegate * unmanaged[ Cdecl] < int , IntPtr , int > ) GetFunctionByName ( nameof ( Py_Main ) , GetUnmanagedDll ( _PythonDll ) ) ;
39
38
PyEval_InitThreads = ( delegate * unmanaged[ Cdecl] < void > ) GetFunctionByName ( nameof ( PyEval_InitThreads ) , GetUnmanagedDll ( _PythonDll ) ) ;
40
39
PyEval_ThreadsInitialized = ( delegate * unmanaged[ Cdecl] < int > ) GetFunctionByName ( nameof ( PyEval_ThreadsInitialized ) , GetUnmanagedDll ( _PythonDll ) ) ;
41
40
PyEval_AcquireLock = ( delegate * unmanaged[ Cdecl] < void > ) GetFunctionByName ( nameof ( PyEval_AcquireLock ) , GetUnmanagedDll ( _PythonDll ) ) ;
@@ -319,7 +318,6 @@ static Delegates()
319
318
internal static delegate * unmanaged[ Cdecl] < PyGILState > PyGILState_Ensure { get ; }
320
319
internal static delegate * unmanaged[ Cdecl] < PyGILState , void > PyGILState_Release { get ; }
321
320
internal static delegate * unmanaged[ Cdecl] < PyThreadState * > PyGILState_GetThisThreadState { get ; }
322
- internal static delegate * unmanaged[ Cdecl] < int , IntPtr , int > Py_Main { get ; }
323
321
internal static delegate * unmanaged[ Cdecl] < void > PyEval_InitThreads { get ; }
324
322
internal static delegate * unmanaged[ Cdecl] < int > PyEval_ThreadsInitialized { get ; }
325
323
internal static delegate * unmanaged[ Cdecl] < void > PyEval_AcquireLock { get ; }