From: Stephen S. <rad...@gm...> - 2021-04-11 15:05:55
|
Sorry to not answer sooner. The "s" and "S" thing is because OSC has two types to distinguish from "strings" and "symbols", this comes from its history of modeling messaging within the Max / PureData-style environments. As far as data structures go, the lo_arg is a union, so it doesn't really matter whether you use "s" or "S", as they have the same address, but from a semantic point of view you should use "s" if the type is LO_STRING and "S" if the type is LO_SYMBOL. But it's only necessary to distinguish if your program distinguishes those types (eg. messages from PureData may distinguish them), otherwise you can feel free to treat symbols as strings. Steve On Tue, Mar 2, 2021 at 8:43 AM Fernando Carello <fca...@gm...> wrote: > > Thank you guys! > > Fernando > > > _______________________________________________ > liblo-devel mailing list > lib...@li... > https://lists.sourceforge.net/lists/listinfo/liblo-devel |