]> git.cworth.org Git - apitrace/blobdiff - cli/cli_main.cpp
Add "apitrace trim" command.
[apitrace] / cli / cli_main.cpp
index 981f39e416f2a514dc6de1123f3c0451835acf22..a776107fd12a13c6ae2a01cff510245b096af115 100644 (file)
@@ -66,7 +66,14 @@ const Command help_command = {
 };
 
 static const Command * commands[] = {
+    &diff_command,
+    &diff_state_command,
+    &diff_images_command,
     &dump_command,
+    &pickle_command,
+    &repack_command,
+    &trace_command,
+    &trim_command,
     &help_command
 };
 
@@ -180,5 +187,5 @@ main(int argc, char **argv)
     std::cerr << "Error: unknown command " << command_name
               << " (see \"apitrace help\").\n";
 
-    return 1;
+   return 1;
 }