/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT **************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** FileX Component */ /** */ /** Unicode */ /** */ /**************************************************************************/ /**************************************************************************/ #define FX_SOURCE_CODE /* Include necessary system files. */ #include "fx_api.h" #include "fx_unicode.h" /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _fx_unicode_length_get PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function returns the length of the supplied unicode name. */ /* */ /* Note, this API is deprecated as _fx_unicode_length_get_extended */ /* should be used. The maximum buffer size of unicode_name is 256. */ /* */ /* INPUT */ /* */ /* unicode_name Pointer to unicode name */ /* */ /* OUTPUT */ /* */ /* length */ /* */ /* CALLS */ /* */ /* _fx_unicode_length_get_extended Actual unicode length get */ /* service */ /* */ /* CALLED BY */ /* */ /* Application Code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 William E. Lamie Initial Version 6.0 */ /* 09-30-2020 William E. Lamie Modified comment(s), */ /* resulting in version 6.1 */ /* */ /**************************************************************************/ ULONG _fx_unicode_length_get(UCHAR *unicode_name) { /* Call the extended version with 256 bytes maximum buffer length. */ return(_fx_unicode_length_get_extended(unicode_name, 256)); }