ReactOS
0.4.16-dev-959-g2ec3a19
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
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
*/
22
NTSTATUS
23
NTAPI
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 */
BOOLEAN
unsigned char BOOLEAN
Definition:
ProcessorBind.h:185
NTSTATUS
LONG NTSTATUS
Definition:
precomp.h:26
DPRINT1
#define DPRINT1
Definition:
precomp.h:8
UNIMPLEMENTED
#define UNIMPLEMENTED
Definition:
ntoskrnl.c:15
NULL
#define NULL
Definition:
types.h:112
ntdll.h
STATUS_SUCCESS
#define STATUS_SUCCESS
Definition:
shellext.h:65
_UNICODE_STRING
Definition:
env_spec_w32.h:368
NTAPI
#define NTAPI
Definition:
typedefs.h:36
IN
#define IN
Definition:
typedefs.h:39
OUT
#define OUT
Definition:
typedefs.h:40
RtlConvertUiListToApiList
NTSTATUS NTAPI RtlConvertUiListToApiList(IN PUNICODE_STRING UiList, OUT PUNICODE_STRING ApiList, IN BOOLEAN SpaceAsSeparator)
Definition:
uilist.c:24
dll
ntdll
rtl
uilist.c
Generated on Sun Apr 6 2025 06:05:58 for ReactOS by
1.9.6