Index: node_images.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/node_images/node_images.module,v
retrieving revision 1.11.2.16
diff -u -p -r1.11.2.16 node_images.module
--- node_images.module  3 Feb 2009 13:45:50 -0000       1.11.2.16
+++ node_images.module  29 Dec 2009 02:38:33 -0000
@@ -982,5 +982,16 @@ function _node_images_translate(&$file,
   $context = _node_images_build_i18nstrings_context($file);
   if (module_exists('i18nstrings') && function_exists('tt')) {
     $file->description = tt($context, $file->description, NULL, $update);
-  }
-}
\ No newline at end of file
+  }
+}
+
+/**
+* Implementation of hook_views_api().
+* @return Array with Views API version.
+*/
+function node_images_views_api() {
+  return array(
+    'api' => 2,
+    'path' => drupal_get_path('module', 'node_images') .'/views',
+  );
+}
