diff options
Diffstat (limited to 'channels.ecpp')
-rw-r--r-- | channels.ecpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/channels.ecpp b/channels.ecpp new file mode 100644 index 0000000..6458f5b --- /dev/null +++ b/channels.ecpp @@ -0,0 +1,22 @@ +<%pre> +#include <vdr/channels.h> +</%pre> +<html> + <head> + <title>ecpp-application testproject</title> + </head> + <body> +<{ + + for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel)) { + if (!channel->GroupSep() && *channel->Name()) { +}> + <$ channel->Name() $> +<{ + } + } + + +}> + </body> +</html> |