Exemplo n.º 1
0
 public IntPtr PyString_FromStringAndSize(
     string value,
     int size
     )
 {
     return(Runtime_Windows.PyString_FromStringAndSize(value, size));
 }
Exemplo n.º 2
0
 public IntPtr PyUnicode_FromUnicode(
     string s,
     int size
     )
 {
     return(Runtime_Windows.PyUnicode_FromUnicode(s, size));
 }
Exemplo n.º 3
0
 public int Py_Main(
     int argc,
     string[] argv
     )
 {
     return(Runtime_Windows.Py_Main(argc, argv));
 }
Exemplo n.º 4
0
 public IntPtr PyUnicode_FromKindAndData(
     int kind,
     string s,
     int size
     )
 {
     return(Runtime_Windows.PyUnicode_FromKindAndData(kind, s, size));
 }
Exemplo n.º 5
0
 public void PySys_SetArgvEx(
     int argc,
     string[] argv,
     int updatepath
     )
 {
     return(Runtime_Windows.PySys_SetArgvEx(argc,
                                            argv,
                                            updatepath));
 }
Exemplo n.º 6
0
 public IntPtr PyTuple_New(int size)
 {
     return(Runtime_Windows.PyTuple_New(size));
 }
Exemplo n.º 7
0
 public int PyList_SetSlice(IntPtr pointer, int start, int end, IntPtr value)
 {
     return(Runtime_Windows.PyList_SetSlice(pointer, start, end, value));
 }
Exemplo n.º 8
0
 public int PyList_Append(IntPtr pointer, IntPtr value)
 {
     return(Runtime_Windows.PyList_Append(pointer, value));
 }
Exemplo n.º 9
0
 public int PyList_SetItem(IntPtr pointer, int index, IntPtr value)
 {
     return(Runtime_Windows.PyList_SetItem(pointer, index, value));
 }
Exemplo n.º 10
0
 public int PyDict_Update(IntPtr pointer, IntPtr other)
 {
     return(Runtime_Windows.PyDict_Update(pointer, other));
 }
Exemplo n.º 11
0
 public IntPtr PyDictProxy_New(IntPtr dict)
 {
     return(Runtime_Windows.PyDictProxy_New(dict));
 }
Exemplo n.º 12
0
 public IntPtr PyDict_New()
 {
     return(Runtime_Windows.PyDict_New());
 }
Exemplo n.º 13
0
 public IntPtr PyUnicode_FromOrdinal(int c)
 {
     return(Runtime_Windows.PyUnicode_FromOrdinal(c));
 }
Exemplo n.º 14
0
 public IntPtr PyUnicode_AsUnicode(IntPtr ob)
 {
     return(Runtime_Windows.PyUnicode_AsUnicode(ob));
 }
Exemplo n.º 15
0
 public int PyUnicode_GetSize(IntPtr ob)
 {
     return(Runtime_Windows.PyUnicode_GetSize(ob));
 }
Exemplo n.º 16
0
 public IntPtr PyDict_Items(IntPtr pointer)
 {
     return(Runtime_Windows.PyDict_Items(pointer));
 }
Exemplo n.º 17
0
 public IntPtr PyDict_Copy(IntPtr pointer)
 {
     return(Runtime_Windows.PyDict_Copy(pointer));
 }
Exemplo n.º 18
0
 public IntPtr PyDict_GetItem(IntPtr pointer, IntPtr key)
 {
     return(Runtime_Windows.PyDict_GetItem(pointer, key));
 }
Exemplo n.º 19
0
 public void PyDict_Clear(IntPtr pointer)
 {
     Runtime_Windows.PyDict_Clear(pointer);
 }
Exemplo n.º 20
0
 public IntPtr PyGILState_GetThisThreadState()
 {
     return(Runtime_Windows.PyGILState_GetThisThreadState());
 }
Exemplo n.º 21
0
 public IntPtr PyList_AsTuple(IntPtr pointer)
 {
     return(Runtime_Windows.PyList_AsTuple(pointer));
 }
Exemplo n.º 22
0
 public int PyDict_SetItem(IntPtr pointer, IntPtr key, IntPtr value)
 {
     return(Runtime_Windows.PyDict_SetItem(pointer, key, value));
 }
Exemplo n.º 23
0
 public int PyList_Insert(IntPtr pointer, int index, IntPtr value)
 {
     return(Runtime_Windows.PyList_Insert(pointer, index, value));
 }
Exemplo n.º 24
0
 public int PyDict_SetItemString(IntPtr pointer, string key, IntPtr value)
 {
     return(Runtime_Windows.PyDict_SetItemString(pointer, key, value));
 }
Exemplo n.º 25
0
 public IntPtr PyList_GetSlice(IntPtr pointer, int start, int end)
 {
     return(Runtime_Windows.PyList_GetSlice(pointer, start, end));
 }
Exemplo n.º 26
0
 public int PyDict_DelItem(IntPtr pointer, IntPtr key)
 {
     return(Runtime_Windows.PyDict_DelItem(pointer, key));
 }
Exemplo n.º 27
0
 public int PyList_Size(IntPtr pointer)
 {
     return(Runtime_Windows.PyList_Size(pointer));
 }
Exemplo n.º 28
0
 public int PyDict_DelItemString(IntPtr pointer, string key)
 {
     return(Runtime_Windows.PyDict_DelItemString(pointer, key));
 }
Exemplo n.º 29
0
 public IntPtr PyTuple_GetItem(IntPtr pointer, int index)
 {
     return(Runtime_Windows.PyTuple_GetItem(pointer, index));
 }
Exemplo n.º 30
0
 public int PyMapping_HasKey(IntPtr pointer, IntPtr key)
 {
     return(Runtime_Windows.PyMapping_HasKey(pointer, key));
 }