We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to reproduce this method: https://docs.gtk.org/Pango/method.Layout.xy_to_index.html
1 and 2 arguments are working, but I have following construction where index_ and trailing must be returned as 3 and 4 arguments:
index_
trailing
Php::Value PangoLayout_::xy_to_index(Php::Parameters ¶meters) { gint x = (gint) parameters[0]; gint y = (gint) parameters[1]; gint* index_; gint* trailing; return pango_layout_xy_to_index(PANGO_LAYOUT(instance), x, y, index_, trailing); }
In other words, method must have following implementation in php
PangoLayout::xy_to_index($x, $y, &$index_, &$trailing): bool
Also my function return integer 0|1 not boolean type as documented. Is any way to change?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Trying to reproduce this method:
https://docs.gtk.org/Pango/method.Layout.xy_to_index.html
1 and 2 arguments are working, but
I have following construction where
index_
andtrailing
must be returned as 3 and 4 arguments:In other words, method must have following implementation in php
Also my function return integer 0|1 not boolean type as documented. Is any way to change?
The text was updated successfully, but these errors were encountered: