adding stuff to make the code extractor pick up examples

Original commit message from CVS:
adding stuff to make the code extractor pick up examples
This commit is contained in:
Thomas Vander Stichele 2002-09-14 13:21:12 +00:00
parent 40e88820f7
commit 2c902a840c
2 changed files with 8 additions and 4 deletions

View file

@ -24,6 +24,7 @@
</para> </para>
<programlisting> <programlisting>
/* example-begin xml-mp3.c */
#include &lt;stdlib.h&gt; #include &lt;stdlib.h&gt;
#include &lt;gst/gst.h&gt; #include &lt;gst/gst.h&gt;
@ -32,14 +33,14 @@ gboolean playing;
int int
main (int argc, char *argv[]) main (int argc, char *argv[])
{ {
GstElement *filesrc, *osssink, *queue, *queue2, *parse, *decode; GstElement *filesrc, *osssink, *queue, *queue2, *decode;
GstElement *bin; GstElement *bin;
GstElement *thread, *thread2; GstElement *thread, *thread2;
gst_init (&amp;argc,&amp;argv); gst_init (&amp;argc,&amp;argv);
if (argc != 2) { if (argc != 2) {
g_print ("usage: %s &lt;filename&gt;\n", argv[0]); g_print ("usage: %s &lt;mp3 filename&gt;\n", argv[0]);
exit (-1); exit (-1);
} }
@ -99,6 +100,7 @@ main (int argc, char *argv[])
exit (0); exit (0);
} }
/* example-end xml-mp3.c */
</programlisting> </programlisting>
<para> <para>
The most important line is: The most important line is:

View file

@ -24,6 +24,7 @@
</para> </para>
<programlisting> <programlisting>
/* example-begin xml-mp3.c */
#include &lt;stdlib.h&gt; #include &lt;stdlib.h&gt;
#include &lt;gst/gst.h&gt; #include &lt;gst/gst.h&gt;
@ -32,14 +33,14 @@ gboolean playing;
int int
main (int argc, char *argv[]) main (int argc, char *argv[])
{ {
GstElement *filesrc, *osssink, *queue, *queue2, *parse, *decode; GstElement *filesrc, *osssink, *queue, *queue2, *decode;
GstElement *bin; GstElement *bin;
GstElement *thread, *thread2; GstElement *thread, *thread2;
gst_init (&amp;argc,&amp;argv); gst_init (&amp;argc,&amp;argv);
if (argc != 2) { if (argc != 2) {
g_print ("usage: %s &lt;filename&gt;\n", argv[0]); g_print ("usage: %s &lt;mp3 filename&gt;\n", argv[0]);
exit (-1); exit (-1);
} }
@ -99,6 +100,7 @@ main (int argc, char *argv[])
exit (0); exit (0);
} }
/* example-end xml-mp3.c */
</programlisting> </programlisting>
<para> <para>
The most important line is: The most important line is: