forked from LeenkxTeam/Kmake
18 lines
426 B
C++
18 lines
426 B
C++
#ifndef SRC_EMBEDDED_DATA_H_
|
|
#define SRC_EMBEDDED_DATA_H_
|
|
|
|
#include <cinttypes>
|
|
#include <string>
|
|
|
|
// This file must not depend on node.h or other code that depends on
|
|
// the full Node.js implementation because it is used during the
|
|
// compilation of the Node.js implementation itself (especially js2c).
|
|
|
|
namespace node {
|
|
|
|
const std::string& GetOctalCode(uint8_t index);
|
|
|
|
} // namespace node
|
|
|
|
#endif // SRC_EMBEDDED_DATA_H_
|