Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e5f1c0f7
Commit
e5f1c0f7
authored
Apr 19, 2021
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Build with msvcrt.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
aa9f3e6e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
Makefile.in
dlls/wldap32/Makefile.in
+2
-0
libldap.h
dlls/wldap32/libldap.h
+5
-5
page.c
dlls/wldap32/page.c
+1
-1
No files found.
dlls/wldap32/Makefile.in
View file @
e5f1c0f7
...
...
@@ -4,6 +4,8 @@ IMPORTS = user32
EXTRAINCL
=
$(LDAP_CFLAGS)
EXTRALIBS
=
$(LDAP_LIBS)
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
add.c
\
ber.c
\
...
...
dlls/wldap32/libldap.h
View file @
e5f1c0f7
...
...
@@ -19,8 +19,8 @@
/* compatible with structures defined in ldap.h */
typedef
struct
bervalU
{
unsigned
long
bv_len
;
char
*
bv_val
;
ULONG_PTR
bv_len
;
char
*
bv_val
;
}
BerValueU
;
typedef
struct
...
...
@@ -79,8 +79,8 @@ typedef struct
typedef
struct
timevalU
{
unsigned
long
tv_sec
;
unsigned
long
tv_usec
;
LONG_PTR
tv_sec
;
LONG_PTR
tv_usec
;
}
LDAP_TIMEVALU
;
#ifndef SASL_CB_LIST_END
...
...
@@ -92,7 +92,7 @@ typedef struct timevalU
typedef
struct
sasl_interactU
{
unsigned
long
id
;
ULONG_PTR
id
;
const
char
*
challenge
;
const
char
*
prompt
;
const
char
*
defresult
;
...
...
dlls/wldap32/page.c
View file @
e5f1c0f7
...
...
@@ -245,7 +245,7 @@ ULONG CDECL ldap_parse_page_controlW( WLDAP32_LDAP *ld, LDAPControlW **ctrls, UL
for
(
i
=
0
;
ctrls
[
i
];
i
++
)
{
if
(
!
lstrcmpW
(
LDAP_PAGED_RESULT_OID_STRING_W
,
ctrls
[
i
]
->
ldctl_oid
))
if
(
!
wcscmp
(
LDAP_PAGED_RESULT_OID_STRING_W
,
ctrls
[
i
]
->
ldctl_oid
))
control
=
ctrls
[
i
];
}
if
(
!
control
)
return
WLDAP32_LDAP_CONTROL_NOT_FOUND
;
...
...
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