summaryrefslogtreecommitdiffstats
path: root/ppapi/c/pp_stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/c/pp_stdint.h')
-rw-r--r--ppapi/c/pp_stdint.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/ppapi/c/pp_stdint.h b/ppapi/c/pp_stdint.h
index 412b949..385fce4 100644
--- a/ppapi/c/pp_stdint.h
+++ b/ppapi/c/pp_stdint.h
@@ -10,6 +10,12 @@
* Provides a definition of C99 sized types
* across different compilers.
*/
+
+/**
+ *
+ * @addtogroup Typedefs
+ * @{
+ */
#if defined(_MSC_VER)
typedef unsigned char uint8_t;
@@ -20,7 +26,9 @@ typedef unsigned int uint32_t;
typedef int int32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
-
+/**
+ * @}
+ */
#else
#include <stdint.h>
#endif