Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | changed signature of cairo-write-func-t and cairo-read-func-t |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
13f43a0da08846b335ee96f31a730377 |
User & Date: | aldo 2018-12-09 15:20:02 |
Context
2018-12-09
| ||
15:20 | changed cairo-pdf-surface-create-for-stream closure parameter to ptr check-in: a7e9ec9d65 user: aldo tags: trunk | |
15:20 | changed signature of cairo-write-func-t and cairo-read-func-t check-in: 13f43a0da0 user: aldo tags: trunk | |
15:19 | added bytevector to json->string outputs verbatim check-in: 2f15dd43ce user: aldo tags: trunk | |
Changes
Changes to cairo/types.ss.
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
(define-enumeration* cairo-format (argb-32 rgb-24 a-8 a-1 rgb-16-565 rgb-30)) (define cairo-format-invalid -1) (define-ftype cairo-write-func-t (function (void* void* unsigned-int) cairo-status-t)) (define-ftype cairo-read-func-t (function (void* void* unsigned-int) cairo-status-t)) (define-ftype cairo-rectangle-int-t (struct [x int] [y int] [width int] [height int])) (define-ftype-allocator cairo-rectangle-int-create cairo-rectangle-int-t) (define-enumeration* cairo-operator |
| | |
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
(define-enumeration* cairo-format (argb-32 rgb-24 a-8 a-1 rgb-16-565 rgb-30)) (define cairo-format-invalid -1) (define-ftype cairo-write-func-t (function (ptr (* unsigned-8) unsigned-int) cairo-status-t)) (define-ftype cairo-read-func-t (function (ptr (* unsigned-8) unsigned-int) cairo-status-t)) (define-ftype cairo-rectangle-int-t (struct [x int] [y int] [width int] [height int])) (define-ftype-allocator cairo-rectangle-int-create cairo-rectangle-int-t) (define-enumeration* cairo-operator |