| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 | 5 |
| 6 /** | 6 /** |
| 7 * This file provides a definition of C99 sized types | 7 * This file provides a definition of C99 sized types |
| 8 * for Microsoft compilers. These definitions only apply | 8 * for Microsoft compilers. These definitions only apply |
| 9 * for trusted modules. | 9 * for trusted modules. |
| 10 */ | 10 */ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 /** Used for padding, should be (u)int8_t */ | 37 /** Used for padding, should be (u)int8_t */ |
| 38 char; | 38 char; |
| 39 | 39 |
| 40 /** Pointer to memory (void *). */ | 40 /** Pointer to memory (void *). */ |
| 41 mem_t; | 41 mem_t; |
| 42 | 42 |
| 43 /** Pointer to null terminated string (char *). */ | 43 /** Pointer to null terminated string (char *). */ |
| 44 str_t; | 44 str_t; |
| 45 | 45 |
| 46 /** Pointer to constant null terminated string (const char *). */ |
| 47 cstr_t; |
| 48 |
| 46 /** No return value. */ | 49 /** No return value. */ |
| 47 void; | 50 void; |
| 48 }; | 51 }; |
| 49 | 52 |
| 50 #inline c | 53 #inline c |
| 51 | 54 |
| 52 /** | 55 /** |
| 53 * | 56 * |
| 54 * @addtogroup Typedefs | 57 * @addtogroup Typedefs |
| 55 * @{ | 58 * @{ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 82 | 85 |
| 83 #else | 86 #else |
| 84 #include <stdint.h> | 87 #include <stdint.h> |
| 85 #endif | 88 #endif |
| 86 /** | 89 /** |
| 87 * @} | 90 * @} |
| 88 */ | 91 */ |
| 89 | 92 |
| 90 #endinl | 93 #endinl |
| 91 | 94 |
| OLD | NEW |