~ubuntu-branches/ubuntu/wily/xmms2/wily

« back to all changes in this revision

Viewing changes to src/clients/lib/ruby/rb_xmmsclient_main.c

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2008-05-29 10:14:25 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080529101425-ycw1nbd980uhvzfp
Tags: 0.4DrKosmos-4ubuntu1
* Merge from debian unstable (LP: #178477), remaining changes:
  - debian/control: Update Maintainer field
  - debian/control: add lpia to xmms2-plugin-alsa supported architectures
* This version reads AAC files (LP: #156359)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
void Init_Client ();
22
22
 
 
23
/*
 
24
 * call-seq:
 
25
 *  Xmms.userconfdir -> String
 
26
 *
 
27
 * Returns the xmms2 configuration directory for the current user.
 
28
 */
23
29
static VALUE
24
30
m_userconfdir_get (VALUE self)
25
31
{
31
37
        return p ? rb_str_new2 (p) : Qnil;
32
38
}
33
39
 
 
40
/*
 
41
 * call-seq:
 
42
 *  Xmms.decode_url(url) -> String
 
43
 *
 
44
 * Decodes a url-encoded string _url_ and returns it in UNKNOWN ENCODING.
 
45
 * Use with caution.
 
46
 */
34
47
static VALUE
35
48
m_decode_url (VALUE self, VALUE str)
36
49
{