From dc4c96a0da41d4d45a57b76ed4c3715a8ade22d4 Mon Sep 17 00:00:00 2001 From: "(Holloway) Chew, Kean Ho" Date: Thu, 3 Oct 2024 16:22:56 +0800 Subject: [PATCH] init: exported To_UTF16_From_Unicode primitive function It appears it was a miss during the last porting. Hence, let's export that function. This patch exports To_UTF16_From_Unicode primitive function in init/ directory. Co-authored-by: Shuralyov, Jean Co-authored-by: Galyna, Cory Co-authored-by: (Holloway) Chew, Kean Ho Signed-off-by: (Holloway) Chew, Kean Ho --- init/services/HestiaKERNEL/Vanilla.sh.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init/services/HestiaKERNEL/Vanilla.sh.ps1 b/init/services/HestiaKERNEL/Vanilla.sh.ps1 index 641a012..4cf9c12 100644 --- a/init/services/HestiaKERNEL/Vanilla.sh.ps1 +++ b/init/services/HestiaKERNEL/Vanilla.sh.ps1 @@ -37,6 +37,7 @@ echo \" <<'RUN_AS_POWERSHELL' >/dev/null # " | Out-Null . "${env:LIBS_HESTIA}\HestiaKERNEL\Run_Parallel_Sentinel.ps1" . "${env:LIBS_HESTIA}\HestiaKERNEL\To_Unicode_From_String.ps1" . "${env:LIBS_HESTIA}\HestiaKERNEL\To_UTF8_From_Unicode.ps1" +. "${env:LIBS_HESTIA}\HestiaKERNEL\To_UTF16_From_Unicode.ps1" . "${env:LIBS_HESTIA}\HestiaKERNEL\To_UTF32_From_Unicode.ps1" . "${env:LIBS_HESTIA}\HestiaKERNEL\Unicode.ps1" ################################################################################ @@ -57,6 +58,7 @@ RUN_AS_POWERSHELL . "${LIBS_HESTIA}/HestiaKERNEL/Run_Parallel_Sentinel.sh" . "${LIBS_HESTIA}/HestiaKERNEL/To_Unicode_From_String.sh" . "${LIBS_HESTIA}/HestiaKERNEL/To_UTF8_From_Unicode.sh" +. "${LIBS_HESTIA}/HestiaKERNEL/To_UTF16_From_Unicode.sh" . "${LIBS_HESTIA}/HestiaKERNEL/To_UTF32_From_Unicode.sh" . "${LIBS_HESTIA}/HestiaKERNEL/Unicode.sh" ################################################################################