No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
The problem is that you are passing a pointer by value and expecting to be able to change it. What you need to do is to pass a pointer to the int pointer: int initialize(PTR_VLAUE_ARRAY *value_array) { *value_array = (PTR_VLAUE_ARRAY)malloc(sizeof(int) * MAX_VALUE_ARRAY_SIZE); if (*value_array == NULL) return -1; return 0; …
Does anyone have experience adapting the "JUCE" TextEditor (or similar) for RTL languages? We are working on our own version of it for 8th (8th-dev.com) but it is pretty slow going. Ideally we would like to handle Hebrew and/or Arabic text mixed with "LTR" languages.
I recently posted a code sample to rosettacode on the "8th" section there, for the '24 game'. The code is also present as well as some discussion on the 8th forum, here: http://8th-dev.com/forum/index.php/topic,294.0.html It shows some interesting techniques that are 8th-specific, like restricting the user's access to the underlying interpreter …
If you want to develop iOS or OS X applications, you have to have a Mac to do the final packaging on (either you or an agent of yours). If you use our "8th" development language (8th-dev.com), you can do all your dev work on Windows (or Mac or Linux), …
The End.
Ron_2