Pepper_56_C_interfaces
Pepper_56_C_interfaces
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
pp_stdint.h
Go to the documentation of this file.
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5 
6 /* From pp_stdint.idl modified Mon Jul 18 17:53:53 2011. */
7 
8 #ifndef PPAPI_C_PP_STDINT_H_
9 #define PPAPI_C_PP_STDINT_H_
10 
11 #include "ppapi/c/pp_macros.h"
12 
27 #if defined(_MSC_VER)
28 
30 typedef unsigned char uint8_t;
31 
33 typedef signed char int8_t;
34 
36 typedef unsigned short uint16_t;
37 
39 typedef short int16_t;
40 
42 typedef unsigned int uint32_t;
43 
45 typedef int int32_t;
46 
48 typedef __int64 int64_t;
49 
51 typedef unsigned __int64 uint64_t;
52 
53 #else
54 #include <stdint.h>
55 #endif
56 
60 #endif /* PPAPI_C_PP_STDINT_H_ */
61