summaryrefslogtreecommitdiffstats
path: root/src/VBox/HostServices/SharedOpenGL/crserver/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/HostServices/SharedOpenGL/crserver/main.c')
-rw-r--r--src/VBox/HostServices/SharedOpenGL/crserver/main.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/VBox/HostServices/SharedOpenGL/crserver/main.c b/src/VBox/HostServices/SharedOpenGL/crserver/main.c
new file mode 100644
index 00000000..9b525e56
--- /dev/null
+++ b/src/VBox/HostServices/SharedOpenGL/crserver/main.c
@@ -0,0 +1,23 @@
+/* Copyright (c) 2001, Stanford University
+ * All rights reserved
+ *
+ * See the file LICENSE.txt for information on redistributing this software.
+ */
+
+#include "cr_server.h"
+
+/**
+ * \mainpage Crserver
+ *
+ * \section CrserverIntroduction Introduction
+ *
+ * Chromium consists of all the top-level files in the cr
+ * directory. The crserver module basically takes care of API dispatch,
+ * and OpenGL state management.
+ *
+ */
+
+int main( int argc, char *argv[] )
+{
+ return CRServerMain( argc, argv );
+}