Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: ppapi/c/pp_stdint.h

Issue 6711047: Fix up some types in the API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 #ifndef PPAPI_C_PP_STDINT_H_ 5 #ifndef PPAPI_C_PP_STDINT_H_
6 #define PPAPI_C_PP_STDINT_H_ 6 #define PPAPI_C_PP_STDINT_H_
7 7
8 /** 8 /**
9 * @file 9 * @file
10 * This file provides a definition of C99 sized types 10 * This file provides a definition of C99 sized types
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 /** This value represents a guaranteed unsigned 64 bit integer. */ 43 /** This value represents a guaranteed unsigned 64 bit integer. */
44 typedef unsigned __int64 uint64_t; 44 typedef unsigned __int64 uint64_t;
45 /** 45 /**
46 * @} 46 * @}
47 */ 47 */
48 #else 48 #else
49 #include <stdint.h> 49 #include <stdint.h>
50 #endif 50 #endif
51 51
52 #include <stddef.h> /* Needed for size_t. */
53
54 #endif /* PPAPI_C_PP_STDINT_H_ */ 52 #endif /* PPAPI_C_PP_STDINT_H_ */
55 53
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698