/* * * call-seq: * new * * **NOTE**: Don't use this method. Use Sound.load. * * This method is not implemented. (In the future, it might be * used to create a new Sound with blank audio data.) * * Raises NotImplementedError. * */ static VALUE rg_sound_new( int argc, VALUE *ARGV, VALUE self ) { rb_raise(rb_eNotImpError, "Sound.new is not implemented yet. Use Sound.load to load a sound file."); }