mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
317 B
19 lines
317 B
11 years ago
|
#ifndef SRC_NODE_I18N_H_
|
||
|
#define SRC_NODE_I18N_H_
|
||
|
|
||
|
#include "node.h"
|
||
|
|
||
|
#if defined(NODE_HAVE_I18N_SUPPORT)
|
||
|
|
||
|
namespace node {
|
||
|
namespace i18n {
|
||
|
|
||
|
NODE_EXTERN bool InitializeICUDirectory(const char* icu_data_path);
|
||
|
|
||
|
} // namespace i18n
|
||
|
} // namespace node
|
||
|
|
||
|
#endif // NODE_HAVE_I18N_SUPPORT
|
||
|
|
||
|
#endif // SRC_NODE_I18N_H_
|