]> git.cworth.org Git - apitrace/blobdiff - cli/cli_main.cpp
Add missing signal.h include.
[apitrace] / cli / cli_main.cpp
index a3abf54a0d6daab8aee1a5e09c71d6af6bdfeb48..8f9392e49909c86478d3f6bbbaa0c34bed832e22 100644 (file)
@@ -66,7 +66,11 @@ const Command help_command = {
 };
 
 static const Command * commands[] = {
+    &diff_command,
+    &diff_state_command,
+    &diff_images_command,
     &dump_command,
+    &repack_command,
     &trace_command,
     &help_command
 };
@@ -181,5 +185,5 @@ main(int argc, char **argv)
     std::cerr << "Error: unknown command " << command_name
               << " (see \"apitrace help\").\n";
 
-    return 1;
+   return 1;
 }