ReactOS 0.4.15-dev-7934-g1dc8d80
uilist.c
Go to the documentation of this file.
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 */
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");
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 */
unsigned char BOOLEAN
LONG NTSTATUS
Definition: precomp.h:26
#define DPRINT1
Definition: precomp.h:8
#define UNIMPLEMENTED
Definition: debug.h:115
#define NULL
Definition: types.h:112
#define STATUS_SUCCESS
Definition: shellext.h:65
#define NTAPI
Definition: typedefs.h:36
#define IN
Definition: typedefs.h:39
#define OUT
Definition: typedefs.h:40
NTSTATUS NTAPI RtlConvertUiListToApiList(IN PUNICODE_STRING UiList, OUT PUNICODE_STRING ApiList, IN BOOLEAN SpaceAsSeparator)
Definition: uilist.c:24