Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
4a4ab52d
Commit
4a4ab52d
authored
Dec 02, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 02, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better stick to the PSDK types.
Update win32.api.
parent
e186f54c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
10 deletions
+16
-10
parse.c
dlls/wldap32/parse.c
+6
-6
winldap.h
include/winldap.h
+4
-4
win32.api
tools/winapi/win32.api
+6
-0
No files found.
dlls/wldap32/parse.c
View file @
4a4ab52d
...
...
@@ -262,9 +262,9 @@ ULONG ldap_parse_sort_controlW( WLDAP32_LDAP *ld, PLDAPControlW *control,
return
ret
;
}
int
ldap_parse_vlv_controlA
(
WLDAP32_LDAP
*
ld
,
LDAPControlA
*
*
control
,
unsigned
long
*
targetpos
,
unsigned
long
*
listcount
,
struct
WLDAP32_berval
**
context
,
int
*
errcode
)
INT
ldap_parse_vlv_controlA
(
WLDAP32_LDAP
*
ld
,
PLDAPControlA
*
control
,
PULONG
targetpos
,
PULONG
listcount
,
struct
WLDAP32_berval
**
context
,
PINT
errcode
)
{
int
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
...
...
@@ -289,9 +289,9 @@ int ldap_parse_vlv_controlA( WLDAP32_LDAP *ld, LDAPControlA **control,
return
ret
;
}
int
ldap_parse_vlv_controlW
(
WLDAP32_LDAP
*
ld
,
LDAPControlW
*
*
control
,
unsigned
long
*
targetpos
,
unsigned
long
*
listcount
,
struct
WLDAP32_berval
**
context
,
int
*
errcode
)
INT
ldap_parse_vlv_controlW
(
WLDAP32_LDAP
*
ld
,
PLDAPControlW
*
control
,
PULONG
targetpos
,
PULONG
listcount
,
struct
WLDAP32_berval
**
context
,
PINT
errcode
)
{
int
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
...
...
include/winldap.h
View file @
4a4ab52d
...
...
@@ -480,8 +480,8 @@ ULONG ldap_free_controlsW(LDAPControlW**);
PCHAR
ldap_get_dnA
(
LDAP
*
,
LDAPMessage
*
);
PWCHAR
ldap_get_dnW
(
LDAP
*
,
LDAPMessage
*
);
#define ldap_get_dn WINELIB_NAME_AW(ldap_get_dn)
ULONG
ldap_get_next_page
(
LDAP
*
,
PLDAPSearch
,
ULONG
,
ULONG
*
);
ULONG
ldap_get_next_page_s
(
LDAP
*
,
PLDAPSearch
,
struct
l_timeval
*
,
ULONG
,
ULONG
*
,
LDAPMessage
**
);
ULONG
ldap_get_next_page
(
PLDAP
,
PLDAPSearch
,
ULONG
,
ULONG
*
);
ULONG
ldap_get_next_page_s
(
PLDAP
,
PLDAPSearch
,
struct
l_timeval
*
,
ULONG
,
ULONG
*
,
LDAPMessage
**
);
ULONG
ldap_get_optionA
(
LDAP
*
,
int
,
void
*
);
ULONG
ldap_get_optionW
(
LDAP
*
,
int
,
void
*
);
#define ldap_get_option WINELIB_NAME_AW(ldap_get_option)
...
...
@@ -546,8 +546,8 @@ ULONG ldap_parse_resultW(LDAP*,LDAPMessage*,ULONG*,PWCHAR*,PWCHAR*,PWCHAR**,PLDA
ULONG
ldap_parse_sort_controlA
(
LDAP
*
,
PLDAPControlA
*
,
ULONG
*
,
PCHAR
*
);
ULONG
ldap_parse_sort_controlW
(
LDAP
*
,
PLDAPControlW
*
,
ULONG
*
,
PWCHAR
*
);
#define ldap_parse_sort_control WINELIB_NAME_AW(ldap_parse_sort_control)
int
ldap_parse_vlv_controlA
(
LDAP
*
,
PLDAPControlA
*
,
unsigned
long
*
,
unsigned
long
*
,
struct
berval
**
,
int
*
);
int
ldap_parse_vlv_controlW
(
LDAP
*
,
PLDAPControlW
*
,
unsigned
long
*
,
unsigned
long
*
,
struct
berval
**
,
int
*
);
INT
ldap_parse_vlv_controlA
(
PLDAP
,
PLDAPControlA
*
,
PULONG
,
PULONG
,
PBERVAL
*
,
PINT
);
INT
ldap_parse_vlv_controlW
(
PLDAP
,
PLDAPControlW
*
,
PULONG
,
PULONG
,
PBERVAL
*
,
PINT
);
#define ldap_parse_vlv_control WINELIB_NAME_AW(ldap_parse_vlv_control)
void
ldap_perror
(
LDAP
*
,
const
PCHAR
);
ULONG
ldap_rename_extA
(
LDAP
*
,
PCHAR
,
PCHAR
,
PCHAR
,
INT
,
PLDAPControlA
*
,
PLDAPControlA
*
,
ULONG
*
);
...
...
tools/winapi/win32.api
View file @
4a4ab52d
...
...
@@ -5222,16 +5222,22 @@ LDAPModA *[]
LDAPModW *[]
PBERVAL *
PCHAR *
PCHAR **
PCHAR[]
PINT
PLDAP_VERSION_INFO
PLDAPControlA
PLDAPControlA *
PLDAPControlA **
PLDAPControlW
PLDAPControlW *
PLDAPControlW **
PLDAPSearch
PLDAPSortKeyA *
PLDAPSortKeyW *
PULONG
PWCHAR *
PWCHAR **
PWCHAR[]
ULONG *
WLDAP32_BerElement *
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment