You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
250 B
12 lines
250 B
(use "errno.witx")
|
|
|
|
(typename $fd (handle))
|
|
|
|
(module $handle_examples
|
|
(@interface func (export "fd_create")
|
|
(result $error $errno)
|
|
(result $fd $fd))
|
|
(@interface func (export "fd_consume")
|
|
(param $fd $fd)
|
|
(result $error $errno))
|
|
)
|
|
|