Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
1b7a70fa
Kaydet (Commit)
1b7a70fa
authored
Mar 03, 2000
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed parameters to a few time and timebase calls: InOut parameters were
inadvertantly seen as out-only.
üst
6dc8ce91
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
12 deletions
+25
-12
Qtmodule.c
Mac/Modules/qt/Qtmodule.c
+17
-12
qtscan.py
Mac/Modules/qt/qtscan.py
+8
-0
No files found.
Mac/Modules/qt/Qtmodule.c
Dosyayı görüntüle @
1b7a70fa
...
...
@@ -1382,12 +1382,13 @@ static PyObject *TimeBaseObj_SetTimeBaseZero(_self, _args)
{
PyObject
*
_res
=
NULL
;
TimeRecord
zero
;
if
(
!
PyArg_ParseTuple
(
_args
,
""
))
if
(
!
PyArg_ParseTuple
(
_args
,
"O&"
,
QtTimeRecord_Convert
,
&
zero
))
return
NULL
;
SetTimeBaseZero
(
_self
->
ob_itself
,
&
zero
);
_res
=
Py_BuildValue
(
"O&"
,
QtTimeRecord_New
,
&
zero
)
;
Py_INCREF
(
Py_None
);
_res
=
Py_None
;
return
_res
;
}
...
...
@@ -1441,7 +1442,7 @@ static PyMethodDef TimeBaseObj_methods[] = {
{
"GetTimeBaseStatus"
,
(
PyCFunction
)
TimeBaseObj_GetTimeBaseStatus
,
1
,
"() -> (long _rv, TimeRecord unpinnedTime)"
},
{
"SetTimeBaseZero"
,
(
PyCFunction
)
TimeBaseObj_SetTimeBaseZero
,
1
,
"(
) -> (TimeRecord zero)
"
},
"(
TimeRecord zero) -> None
"
},
{
"GetTimeBaseEffectiveRate"
,
(
PyCFunction
)
TimeBaseObj_GetTimeBaseEffectiveRate
,
1
,
"() -> (Fixed _rv)"
},
{
NULL
,
NULL
,
0
}
...
...
@@ -7633,7 +7634,8 @@ static PyObject *Qt_ConvertTime(_self, _args)
PyObject
*
_res
=
NULL
;
TimeRecord
inout
;
TimeBase
newBase
;
if
(
!
PyArg_ParseTuple
(
_args
,
"O&"
,
if
(
!
PyArg_ParseTuple
(
_args
,
"O&O&"
,
QtTimeRecord_Convert
,
&
inout
,
TimeBaseObj_Convert
,
&
newBase
))
return
NULL
;
ConvertTime
(
&
inout
,
...
...
@@ -7650,7 +7652,8 @@ static PyObject *Qt_ConvertTimeScale(_self, _args)
PyObject
*
_res
=
NULL
;
TimeRecord
inout
;
TimeScale
newScale
;
if
(
!
PyArg_ParseTuple
(
_args
,
"l"
,
if
(
!
PyArg_ParseTuple
(
_args
,
"O&l"
,
QtTimeRecord_Convert
,
&
inout
,
&
newScale
))
return
NULL
;
ConvertTimeScale
(
&
inout
,
...
...
@@ -7667,7 +7670,8 @@ static PyObject *Qt_AddTime(_self, _args)
PyObject
*
_res
=
NULL
;
TimeRecord
dst
;
TimeRecord
src
;
if
(
!
PyArg_ParseTuple
(
_args
,
"O&"
,
if
(
!
PyArg_ParseTuple
(
_args
,
"O&O&"
,
QtTimeRecord_Convert
,
&
dst
,
QtTimeRecord_Convert
,
&
src
))
return
NULL
;
AddTime
(
&
dst
,
...
...
@@ -7684,7 +7688,8 @@ static PyObject *Qt_SubtractTime(_self, _args)
PyObject
*
_res
=
NULL
;
TimeRecord
dst
;
TimeRecord
src
;
if
(
!
PyArg_ParseTuple
(
_args
,
"O&"
,
if
(
!
PyArg_ParseTuple
(
_args
,
"O&O&"
,
QtTimeRecord_Convert
,
&
dst
,
QtTimeRecord_Convert
,
&
src
))
return
NULL
;
SubtractTime
(
&
dst
,
...
...
@@ -7903,13 +7908,13 @@ static PyMethodDef Qt_methods[] = {
{
"NewTimeBase"
,
(
PyCFunction
)
Qt_NewTimeBase
,
1
,
"() -> (TimeBase _rv)"
},
{
"ConvertTime"
,
(
PyCFunction
)
Qt_ConvertTime
,
1
,
"(TimeBase newBase) -> (TimeRecord inout)"
},
"(Time
Record inout, Time
Base newBase) -> (TimeRecord inout)"
},
{
"ConvertTimeScale"
,
(
PyCFunction
)
Qt_ConvertTimeScale
,
1
,
"(TimeScale newScale) -> (TimeRecord inout)"
},
"(Time
Record inout, Time
Scale newScale) -> (TimeRecord inout)"
},
{
"AddTime"
,
(
PyCFunction
)
Qt_AddTime
,
1
,
"(TimeRecord src) -> (TimeRecord dst)"
},
"(TimeRecord
dst, TimeRecord
src) -> (TimeRecord dst)"
},
{
"SubtractTime"
,
(
PyCFunction
)
Qt_SubtractTime
,
1
,
"(TimeRecord src) -> (TimeRecord dst)"
},
"(TimeRecord
dst, TimeRecord
src) -> (TimeRecord dst)"
},
{
"MusicMediaGetIndexedTunePlayer"
,
(
PyCFunction
)
Qt_MusicMediaGetIndexedTunePlayer
,
1
,
"(ComponentInstance ti, long sampleDescIndex) -> (ComponentResult _rv, ComponentInstance tp)"
},
{
"AlignWindow"
,
(
PyCFunction
)
Qt_AlignWindow
,
1
,
...
...
Mac/Modules/qt/qtscan.py
Dosyayı görüntüle @
1b7a70fa
...
...
@@ -110,6 +110,14 @@ class MyScanner(Scanner):
# MCDoAction and more
([(
'void'
,
'*'
,
'OutMode'
)],
[(
'mcactionparams'
,
'*'
,
'InMode'
)]),
# SetTimeBaseZero. Does not handle NULLs, unfortunately
([(
'TimeRecord'
,
'zero'
,
'OutMode'
)],
[(
'TimeRecord'
,
'zero'
,
'InMode'
)]),
# ConvertTime and ConvertTimeScale
([(
'TimeRecord'
,
'inout'
,
'OutMode'
)],
[(
'TimeRecord'
,
'inout'
,
'InOutMode'
)]),
# AddTime and SubtractTime
([(
'TimeRecord'
,
'dst'
,
'OutMode'
)],
[(
'TimeRecord'
,
'dst'
,
'InOutMode'
)]),
]
if
__name__
==
"__main__"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment