Skip to content

Commit 0041793

Browse files
committed
src: move
1 parent 7edf181 commit 0041793

File tree

3 files changed

+12
-33
lines changed

3 files changed

+12
-33
lines changed

src/node_file.cc

-13
Original file line numberDiff line numberDiff line change
@@ -3146,19 +3146,6 @@ static void GetFormatOfExtensionlessFile(
31463146
}
31473147

31483148
#ifdef _WIN32
3149-
std::wstring ConvertToWideString(const std::string& str) {
3150-
int size_needed = MultiByteToWideChar(
3151-
CP_UTF8, 0, &str[0], static_cast<int>(str.size()), nullptr, 0);
3152-
std::wstring wstrTo(size_needed, 0);
3153-
MultiByteToWideChar(CP_UTF8,
3154-
0,
3155-
&str[0],
3156-
static_cast<int>(str.size()),
3157-
&wstrTo[0],
3158-
size_needed);
3159-
return wstrTo;
3160-
}
3161-
31623149
#define BufferValueToPath(str) \
31633150
std::filesystem::path(ConvertToWideString(str.ToString()))
31643151

src/node_modules.cc

-20
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616

1717
#include "simdjson.h"
1818

19-
#ifdef _WIN32
20-
#include <windows.h>
21-
#endif
22-
2319
namespace node {
2420
namespace modules {
2521

@@ -330,22 +326,6 @@ const BindingData::PackageConfig* BindingData::TraverseParent(
330326
return nullptr;
331327
}
332328

333-
#ifdef _WIN32
334-
std::wstring ConvertToWideString(const std::string& str) {
335-
auto cp = GetACP();
336-
int size_needed = MultiByteToWideChar(
337-
cp, 0, &str[0], static_cast<int>(str.size()), nullptr, 0);
338-
std::wstring wstrTo(size_needed, 0);
339-
MultiByteToWideChar(cp,
340-
0,
341-
&str[0],
342-
static_cast<int>(str.size()),
343-
&wstrTo[0],
344-
size_needed);
345-
return wstrTo;
346-
}
347-
#endif
348-
349329
void BindingData::GetNearestParentPackageJSON(
350330
const v8::FunctionCallbackInfo<v8::Value>& args) {
351331
CHECK_GE(args.Length(), 1);

src/util-inl.h

+12
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,18 @@ bool IsWindowsBatchFile(const char* filename) {
562562
#endif // _WIN32
563563
}
564564

565+
#ifdef _WIN32
566+
inline std::wstring ConvertToWideString(const std::string& str) {
567+
auto cp = GetACP();
568+
int size_needed = MultiByteToWideChar(
569+
cp, 0, &str[0], static_cast<int>(str.size()), nullptr, 0);
570+
std::wstring wstrTo(size_needed, 0);
571+
MultiByteToWideChar(
572+
cp, 0, &str[0], static_cast<int>(str.size()), &wstrTo[0], size_needed);
573+
return wstrTo;
574+
}
575+
#endif // _WIN32
576+
565577
} // namespace node
566578

567579
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS

0 commit comments

Comments
 (0)