77
88 "github.com/progrium/macdriver/macos/corefoundation"
99 "github.com/progrium/macdriver/macos/iosurface"
10- "github.com/progrium/macdriver/objc"
1110)
1211
1312// A callback function that returns a generic pointer to the provider data. [Full Topic]
@@ -28,7 +27,7 @@ type ScreenRefreshCallback = func(count uint32, rects *Rect, userInfo unsafe.Poi
2827// [Full Topic]
2928//
3029// [Full Topic]: https://developer.apple.com/documentation/coregraphics/cgpdfdictionaryapplierblock?language=objc
31- type PDFDictionaryApplierBlock = func (key * uint8 , value unsafe.Pointer , info unsafe.Pointer ) bool
30+ type PDFDictionaryApplierBlock = func (key string , value unsafe.Pointer , info unsafe.Pointer ) bool
3231
3332// Performs custom tasks at the beginning of a PostScript conversion process. [Full Topic]
3433//
@@ -68,7 +67,7 @@ type PSConverterProgressCallback = func(info unsafe.Pointer)
6867// A client-supplied callback function that’s invoked whenever an associated event tap receives a Quartz event. [Full Topic]
6968//
7069// [Full Topic]: https://developer.apple.com/documentation/coregraphics/cgeventtapcallback?language=objc
71- type EventTapCallBack = func (proxy unsafe. Pointer , type_ EventType , event EventRef , userInfo unsafe.Pointer ) EventRef
70+ type EventTapCallBack = func (proxy EventTapProxy , type_ EventType , event EventRef , userInfo unsafe.Pointer ) EventRef
7271
7372// Copies data from a Core Graphics-supplied buffer into a data consumer. [Full Topic]
7473//
@@ -83,7 +82,7 @@ type PathApplierFunction = func(info unsafe.Pointer, element *PathElement)
8382// Performs custom processing on a key-value pair from a PDF dictionary, using optional contextual information. [Full Topic]
8483//
8584// [Full Topic]: https://developer.apple.com/documentation/coregraphics/cgpdfdictionaryapplierfunction?language=objc
86- type PDFDictionaryApplierFunction = func (key * uint8 , value unsafe.Pointer , info unsafe.Pointer )
85+ type PDFDictionaryApplierFunction = func (key string , value unsafe.Pointer , info unsafe.Pointer )
8786
8887// Release private data or resources associated with the pattern. [Full Topic]
8988//
@@ -173,4 +172,4 @@ type DataProviderReleaseInfoCallback = func(info unsafe.Pointer)
173172// A callback function that advances the current position in the data stream supplied by the provider. [Full Topic]
174173//
175174// [Full Topic]: https://developer.apple.com/documentation/coregraphics/cgdataproviderskipforwardcallback?language=objc
176- type DataProviderSkipForwardCallback = func (info unsafe.Pointer , count objc. Object ) objc. Object
175+ type DataProviderSkipForwardCallback = func (info unsafe.Pointer , count int ) int
0 commit comments