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
4b367359
Kaydet (Commit)
4b367359
authored
Ock 09, 2002
tarafından
Just van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed TrackMouseRegion() argument: ioWasInRgn is an in/out parameter.
üst
3e3eacb5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
CarbonEvtscan.py
Mac/Modules/carbonevt/CarbonEvtscan.py
+4
-2
_CarbonEvtmodule.c
Mac/Modules/carbonevt/_CarbonEvtmodule.c
+4
-3
No files found.
Mac/Modules/carbonevt/CarbonEvtscan.py
Dosyayı görüntüle @
4b367359
...
...
@@ -109,8 +109,10 @@ class CarbonEvents_Scanner(Scanner_OSX):
def
makerepairinstructions
(
self
):
return
[
([(
"UInt32"
,
'inSize'
,
"InMode"
),
(
"void_ptr"
,
'inDataPtr'
,
"InMode"
)],
[(
"MyInBuffer"
,
'inDataPtr'
,
"InMode"
)])
[(
"MyInBuffer"
,
'inDataPtr'
,
"InMode"
)]),
([(
"Boolean"
,
'ioWasInRgn'
,
"OutMode"
)],
[(
"Boolean"
,
'ioWasInRgn'
,
"InOutMode"
)]),
]
if
__name__
==
"__main__"
:
main
()
Mac/Modules/carbonevt/_CarbonEvtmodule.c
Dosyayı görüntüle @
4b367359
...
...
@@ -1447,9 +1447,10 @@ static PyObject *CarbonEvents_TrackMouseRegion(PyObject *_self, PyObject *_args)
RgnHandle
inRegion
;
Boolean
ioWasInRgn
;
UInt16
outResult
;
if
(
!
PyArg_ParseTuple
(
_args
,
"O&O&"
,
if
(
!
PyArg_ParseTuple
(
_args
,
"O&O&
b
"
,
GrafObj_Convert
,
&
inPort
,
ResObj_Convert
,
&
inRegion
))
ResObj_Convert
,
&
inRegion
,
&
ioWasInRgn
))
return
NULL
;
_err
=
TrackMouseRegion
(
inPort
,
inRegion
,
...
...
@@ -1795,7 +1796,7 @@ static PyMethodDef CarbonEvents_methods[] = {
{
"TrackMouseLocationWithOptions"
,
(
PyCFunction
)
CarbonEvents_TrackMouseLocationWithOptions
,
1
,
"(GrafPtr inPort, OptionBits inOptions, double inTimeout) -> (Point outPt, UInt32 outModifiers, UInt16 outResult)"
},
{
"TrackMouseRegion"
,
(
PyCFunction
)
CarbonEvents_TrackMouseRegion
,
1
,
"(GrafPtr inPort, RgnHandle inRegion) -> (Boolean ioWasInRgn, UInt16 outResult)"
},
"(GrafPtr inPort, RgnHandle inRegion
, Boolean ioWasInRgn
) -> (Boolean ioWasInRgn, UInt16 outResult)"
},
{
"GetLastUserEventTime"
,
(
PyCFunction
)
CarbonEvents_GetLastUserEventTime
,
1
,
"() -> (double _rv)"
},
{
"GetWindowEventTarget"
,
(
PyCFunction
)
CarbonEvents_GetWindowEventTarget
,
1
,
...
...
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