Removed RCS-style IDs.
[multipass-eu.git] / src / init.rb
1 c = EDJE.collection("euphoria")
2
3 c.program("player.init", :exec_script) do |p|
4         p.signal = "load"
5         p.source = ""
6
7         p.script =<<SMALL
8 new buf[256], len;
9
10 custom_state (PART:"player.songname", "default");
11
12 len = snprintf (buf, 256, "%s", "Metallica - For Whom The Bell Tolls");
13 set_songname (buf, len);
14
15 set_drag(PART:"seeker", 1.0, 0.1)
16 SMALL
17 end