xref: /reactos/dll/ntdll/rtl/uilist.c (revision c2c66aff)
1 /*
2  * COPYRIGHT:       See COPYING in the top level directory
3  * PROJECT:         ReactOS NT User-Mode DLL
4  * FILE:            lib/ntdll/rtl/uilist.c
5  * PURPOSE:         RTL UI to API network computers list conversion.
6  *                  Helper for NETAPI32.DLL
7  * PROGRAMMERS:     Hermes Belusca-Maito
8  */
9 
10 /* INCLUDES *****************************************************************/
11 
12 #include <ntdll.h>
13 
14 #define NDEBUG
15 #include <debug.h>
16 
17 /* FUNCTIONS ***************************************************************/
18 
19 /*
20  * @unimplemented
21  */
22 NTSTATUS
23 NTAPI
RtlConvertUiListToApiList(IN PUNICODE_STRING UiList,OUT PUNICODE_STRING ApiList,IN BOOLEAN SpaceAsSeparator)24 RtlConvertUiListToApiList(
25     IN PUNICODE_STRING UiList,
26     OUT PUNICODE_STRING ApiList,
27     IN BOOLEAN SpaceAsSeparator)
28 {
29     DPRINT1("RtlConvertUiListToApiList(%wZ, 0x%p, %s) called\n",
30             UiList, &ApiList, SpaceAsSeparator ? "true" : "false");
31     UNIMPLEMENTED;
32     /*
33      * Experiments show that returning a success code but setting the
34      * ApiList length to zero is better than returning a failure code.
35      */
36     RtlInitEmptyUnicodeString(ApiList, NULL, 0);
37     return STATUS_SUCCESS;
38 }
39 
40 /* EOF */
41