Index: /trunk/src/VBox/GuestHost/OpenGL/include/cr_unpack.h
===================================================================
--- /trunk/src/VBox/GuestHost/OpenGL/include/cr_unpack.h	(revision 78190)
+++ /trunk/src/VBox/GuestHost/OpenGL/include/cr_unpack.h	(revision 78191)
@@ -126,5 +126,5 @@
     {
         pState->rcUnpack = VERR_BUFFER_OVERFLOW;
-        return SIZE_MAX;
+        return ~(size_t)0;
     }
 
@@ -141,5 +141,5 @@
     { \
         size_t cchStr = crUnpackAcccessChkStrUpdate((a_pState), (a_pszStr), &int_cbAccessVerified); \
-        if (RT_UNLIKELY(cchStr == SIZE_MAX)) \
+        if (RT_UNLIKELY(cchStr == ~(size_t)0)) \
             return; \
     } \
@@ -165,5 +165,5 @@
     do \
     { \
-        if (RT_UNLIKELY((a_pState)->cbUnpackDataLeft < (delta))) \
+        if (RT_UNLIKELY((a_pState)->cbUnpackDataLeft < (size_t)(delta))) \
         { \
           (a_pState)->rcUnpack = VERR_BUFFER_OVERFLOW; \
Index: /trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.cpp
===================================================================
--- /trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.cpp	(revision 78190)
+++ /trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.cpp	(revision 78191)
@@ -45,14 +45,4 @@
 PFNCRHGSMICMDCOMPLETION g_pfnCrHgsmiCompletion = NULL;
 #endif
-
-/**
- * \mainpage CrServerLib
- *
- * \section CrServerLibIntroduction Introduction
- *
- * Chromium consists of all the top-level files in the cr
- * directory.  The core module basically takes care of API dispatch,
- * and OpenGL state management.
- */
 
 
Index: /trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_arrays.cpp
===================================================================
--- /trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_arrays.cpp	(revision 78190)
+++ /trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_arrays.cpp	(revision 78191)
@@ -9,14 +9,5 @@
 #include "unpacker.h"
 #include "cr_glstate.h"
-/**
- * \mainpage Unpacker 
- *
- * \section UnpackerIntroduction Introduction
- *
- * Chromium consists of all the top-level files in the cr
- * directory.  The unpacker module basically takes care of API dispatch,
- * and OpenGL state management.
- *
- */
+
 
 void crUnpackExtendVertexPointer(PCrUnpackerState pState)
