| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project 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 /** \mainpage V8 API Reference Guide | 5 /** \mainpage V8 API Reference Guide |
| 6 * | 6 * |
| 7 * V8 is Google's open source JavaScript engine. | 7 * V8 is Google's open source JavaScript engine. |
| 8 * | 8 * |
| 9 * This set of documents provides reference material generated from the | 9 * This set of documents provides reference material generated from the |
| 10 * V8 header file, include/v8.h. | 10 * V8 header file, include/v8.h. |
| 11 * | 11 * |
| 12 * For other documentation see http://code.google.com/apis/v8/ | 12 * For other documentation see http://code.google.com/apis/v8/ |
| 13 */ | 13 */ |
| 14 | 14 |
| 15 #ifndef V8_H_ | 15 #ifndef V8_H_ |
| 16 #define V8_H_ | 16 #define V8_H_ |
| 17 | 17 |
| 18 #include "v8stdint.h" | 18 #include <stddef.h> |
| 19 #include <stdint.h> |
| 20 #include <stdio.h> |
| 21 |
| 22 #include "v8config.h" |
| 19 | 23 |
| 20 // We reserve the V8_* prefix for macros defined in V8 public API and | 24 // We reserve the V8_* prefix for macros defined in V8 public API and |
| 21 // assume there are no name conflicts with the embedder's code. | 25 // assume there are no name conflicts with the embedder's code. |
| 22 | 26 |
| 23 #ifdef V8_OS_WIN | 27 #ifdef V8_OS_WIN |
| 24 | 28 |
| 25 // Setup for Windows DLL export/import. When building the V8 DLL the | 29 // Setup for Windows DLL export/import. When building the V8 DLL the |
| 26 // BUILDING_V8_SHARED needs to be defined. When building a program which uses | 30 // BUILDING_V8_SHARED needs to be defined. When building a program which uses |
| 27 // the V8 DLL USING_V8_SHARED needs to be defined. When either building the V8 | 31 // the V8 DLL USING_V8_SHARED needs to be defined. When either building the V8 |
| 28 // static library or building a program which uses the V8 static library neither | 32 // static library or building a program which uses the V8 static library neither |
| (...skipping 7015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7044 */ | 7048 */ |
| 7045 | 7049 |
| 7046 | 7050 |
| 7047 } // namespace v8 | 7051 } // namespace v8 |
| 7048 | 7052 |
| 7049 | 7053 |
| 7050 #undef TYPE_CHECK | 7054 #undef TYPE_CHECK |
| 7051 | 7055 |
| 7052 | 7056 |
| 7053 #endif // V8_H_ | 7057 #endif // V8_H_ |
| OLD | NEW |