]> git.cworth.org Git - fips/blobdiff - execute.h
Start wrapping OpenGL, and print periodic FPS value to stdout.
[fips] / execute.h
index 8b9192f7ca5bfbe41e19221d324ad6fd1da6d411..03af7779a229aeb6fae5ec7a84d82572b56e7d42 100644 (file)
--- a/execute.h
+++ b/execute.h
 #ifndef EXECUTE_H
 #define EXECUTE_H
 
-/* Execute the program with arguments as specified.
+/* Execute the program with arguments as specified, but with the
+ * library specified in "library" pre-loaded. The library should be
+ * specified as the compiled filename (such as libfips.so).
  */
 int
-execute (int argc, char * const argv[]);
+execute_with_preload (int argc, char * const argv[], const char *library);
 
 #endif