ReactOS 0.4.15-dev-7958-gcd0bb1a
uilist.c File Reference
#include <ntdll.h>
#include <debug.h>
Include dependency graph for uilist.c:

Go to the source code of this file.

Macros

#define NDEBUG
 

Functions

NTSTATUS NTAPI RtlConvertUiListToApiList (IN PUNICODE_STRING UiList, OUT PUNICODE_STRING ApiList, IN BOOLEAN SpaceAsSeparator)
 

Macro Definition Documentation

◆ NDEBUG

#define NDEBUG

Definition at line 14 of file uilist.c.

Function Documentation

◆ RtlConvertUiListToApiList()

NTSTATUS NTAPI RtlConvertUiListToApiList ( IN PUNICODE_STRING  UiList,
OUT PUNICODE_STRING  ApiList,
IN BOOLEAN  SpaceAsSeparator 
)

Definition at line 24 of file uilist.c.

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}
#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