I getprop defaults to returning strings
so on a bool property you would be getting "true" or "false"
another complication w/gcc4 is no longer converting bool to integer
so some changes were made to all bool routines and a few bool parameters
and more tests were added.
to continue to document which are which, now using
typedef int BOOL;
but that will probably change as I found later windows may have defined BOOL also.
should be fixed by the next version
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: eltro...@gmail.com
I getprop defaults to returning strings
so on a bool property you would be getting "true" or "false"
another complication w/gcc4 is no longer converting bool to integer
so some changes were made to all bool routines and a few bool parameters
and more tests were added.
to continue to document which are which, now using
typedef int BOOL;
but that will probably change as I found later windows may have defined BOOL also.
should be fixed by the next version