OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include <errno.h> | 5 #include <errno.h> |
6 #include <netdb.h> | 6 #include <netdb.h> |
7 | 7 |
8 #include "bin/utils.h" | 8 #include "bin/utils.h" |
9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
10 | 10 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 | 55 |
56 char* StringUtils::WideToUtf8(wchar_t* str) { | 56 char* StringUtils::WideToUtf8(wchar_t* str) { |
57 UNIMPLEMENTED(); | 57 UNIMPLEMENTED(); |
58 return NULL; | 58 return NULL; |
59 } | 59 } |
60 | 60 |
61 const char* StringUtils::WideToUtf8(const wchar_t* str) { | 61 const char* StringUtils::WideToUtf8(const wchar_t* str) { |
62 UNIMPLEMENTED(); | 62 UNIMPLEMENTED(); |
63 return NULL; | 63 return NULL; |
64 } | 64 } |
| 65 |
| 66 wchar_t** ShellUtils::GetUnicodeArgv(int* argc) { |
| 67 return NULL; |
| 68 } |
| 69 |
| 70 void ShellUtils::FreeUnicodeArgv(wchar_t** argv) { |
| 71 } |
OLD | NEW |