@@ -35,7 +35,6 @@ static Delegates()
3535 PyGILState_Ensure = ( delegate * unmanaged[ Cdecl] < PyGILState > ) GetFunctionByName ( nameof ( PyGILState_Ensure ) , GetUnmanagedDll ( _PythonDll ) ) ;
3636 PyGILState_Release = ( delegate * unmanaged[ Cdecl] < PyGILState , void > ) GetFunctionByName ( nameof ( PyGILState_Release ) , GetUnmanagedDll ( _PythonDll ) ) ;
3737 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 ) ) ;
3938 PyEval_InitThreads = ( delegate * unmanaged[ Cdecl] < void > ) GetFunctionByName ( nameof ( PyEval_InitThreads ) , GetUnmanagedDll ( _PythonDll ) ) ;
4039 PyEval_ThreadsInitialized = ( delegate * unmanaged[ Cdecl] < int > ) GetFunctionByName ( nameof ( PyEval_ThreadsInitialized ) , GetUnmanagedDll ( _PythonDll ) ) ;
4140 PyEval_AcquireLock = ( delegate * unmanaged[ Cdecl] < void > ) GetFunctionByName ( nameof ( PyEval_AcquireLock ) , GetUnmanagedDll ( _PythonDll ) ) ;
@@ -319,7 +318,6 @@ static Delegates()
319318 internal static delegate * unmanaged[ Cdecl] < PyGILState > PyGILState_Ensure { get ; }
320319 internal static delegate * unmanaged[ Cdecl] < PyGILState , void > PyGILState_Release { get ; }
321320 internal static delegate * unmanaged[ Cdecl] < PyThreadState * > PyGILState_GetThisThreadState { get ; }
322- internal static delegate * unmanaged[ Cdecl] < int , IntPtr , int > Py_Main { get ; }
323321 internal static delegate * unmanaged[ Cdecl] < void > PyEval_InitThreads { get ; }
324322 internal static delegate * unmanaged[ Cdecl] < int > PyEval_ThreadsInitialized { get ; }
325323 internal static delegate * unmanaged[ Cdecl] < void > PyEval_AcquireLock { get ; }
0 commit comments