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 <stddef.h> | 18 #include <stddef.h> |
19 #include <stdint.h> | 19 #include <stdint.h> |
20 #include <stdio.h> | 20 #include <stdio.h> |
21 | 21 |
| 22 #include "v8-version.h" |
22 #include "v8config.h" | 23 #include "v8config.h" |
23 | 24 |
24 // We reserve the V8_* prefix for macros defined in V8 public API and | 25 // We reserve the V8_* prefix for macros defined in V8 public API and |
25 // assume there are no name conflicts with the embedder's code. | 26 // assume there are no name conflicts with the embedder's code. |
26 | 27 |
27 #ifdef V8_OS_WIN | 28 #ifdef V8_OS_WIN |
28 | 29 |
29 // Setup for Windows DLL export/import. When building the V8 DLL the | 30 // Setup for Windows DLL export/import. When building the V8 DLL the |
30 // BUILDING_V8_SHARED needs to be defined. When building a program which uses | 31 // BUILDING_V8_SHARED needs to be defined. When building a program which uses |
31 // the V8 DLL USING_V8_SHARED needs to be defined. When either building the V8 | 32 // the V8 DLL USING_V8_SHARED needs to be defined. When either building the V8 |
(...skipping 7509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7541 */ | 7542 */ |
7542 | 7543 |
7543 | 7544 |
7544 } // namespace v8 | 7545 } // namespace v8 |
7545 | 7546 |
7546 | 7547 |
7547 #undef TYPE_CHECK | 7548 #undef TYPE_CHECK |
7548 | 7549 |
7549 | 7550 |
7550 #endif // V8_H_ | 7551 #endif // V8_H_ |
OLD | NEW |