I use libglade with my apps. Sometime I don't want user to change the
glade file, so I use "glade_xml_new_from_buffer" to load the xml data
from a char*.
I need to do some modification as below everytime when distributing.

<?....>
<xml ....>
    <..>
</xml>

to

#ifndef XXX_H
#define XXX_H

static const char* xxx_glade =
"<?....>"
"<xml ....>"
"    <..>"
"</xml>";
#endif

It would be very convenient if this function added to glade.
_______________________________________________
Glade-devel maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/glade-devel

Reply via email to