Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #ifndef EMBEDDERS_OPENGLUI_EMULATOR_EMULATOR_EMBEDDER_H_ | |
| 6 #define EMBEDDERS_OPENGLUI_EMULATOR_EMULATOR_EMBEDDER_H_ | |
| 7 | |
| 8 #include "include/dart_api.h" | |
| 9 | |
| 10 DART_EXPORT void emulator_main(int argc, char** argv, | |
| 11 const char* script = "main.dart"); | |
|
vsm
2013/01/16 05:16:02
Is it worth having a default here?
| |
| 12 | |
| 13 #endif // EMBEDDERS_OPENGLUI_EMULATOR_EMULATOR_EMBEDDER_H_ | |
| 14 | |
| OLD | NEW |