/* call-seq:
 *   mode.width         -> width
 *
 * Video mode width, in pixels.
 */
static VALUE VideoMode_GetWidth( VALUE self )
{
        sf::VideoMode *object = NULL;
        Data_Get_Struct( self, sf::VideoMode, object );
        return INT2FIX( object->Width );
}