drupal_set_message(t('The installation of the scanner module was unsuccessful due to a database error. You may have to install the tables by hand.'),'error');
}
// Create tables.
drupal_install_schema('scanner');
}
/**
* Implementation of hook_uninstall().
*/
functionscanner_uninstall(){
db_query('DROP TABLE {scanner}');
// Remove tables.
drupal_uninstall_schema('scanner');
db_query("DELETE FROM {variable} WHERE name LIKE 'scanner_%'");