search for: fish_sound_stop_ok

Displaying 1 result from an estimated 1 matches for "fish_sound_stop_ok".

2006 Mar 20
0
fishsound decoded callback
Hey, I've got a decoder set up with oggz/fishsound and things are mostly working as expected. There is one problem, however, that I'd like your help with. The constants FISH_SOUND_STOP_ERR, FISH_SOUND_CONTINUE, and FISH_SOUND_STOP_OK are nowhere to be found. As far as I can tell, they have never existed outside of the API documentation as they are nowhere to be found on the web, either. Now, I've done a temporary workaround: #define FISH_SOUND_STOP_ERR 1 #define FISH_SOUND_CONTINUE 0 #define FISH_SOUND_STOP_OK -1 Apart fr...