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
70e02ce7
Commit
70e02ce7
authored
Nov 02, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Use WINAPIV calling convention for variadic functions.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
039d267b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ber.c
dlls/wldap32/ber.c
+2
-2
winldap.h
include/winldap.h
+2
-2
No files found.
dlls/wldap32/ber.c
View file @
70e02ce7
...
...
@@ -322,7 +322,7 @@ ULONG CDECL WLDAP32_ber_skip_tag( BerElement *berelement, ULONG *len )
* berelement must have been allocated with ber_alloc_t. This function
* can be called multiple times to append data.
*/
INT
CDECL
WLDAP32_ber_printf
(
BerElement
*
berelement
,
PCHAR
fmt
,
...
)
INT
WINAPIV
WLDAP32_ber_printf
(
BerElement
*
berelement
,
PCHAR
fmt
,
...
)
{
#ifdef HAVE_LDAP
__ms_va_list
list
;
...
...
@@ -417,7 +417,7 @@ INT CDECL WLDAP32_ber_printf( BerElement *berelement, PCHAR fmt, ... )
* berelement must have been allocated with ber_init. This function
* can be called multiple times to decode data.
*/
INT
CDECL
WLDAP32_ber_scanf
(
BerElement
*
berelement
,
PCHAR
fmt
,
...
)
INT
WINAPIV
WLDAP32_ber_scanf
(
BerElement
*
berelement
,
PCHAR
fmt
,
...
)
{
#ifdef HAVE_LDAP
__ms_va_list
list
;
...
...
include/winldap.h
View file @
70e02ce7
...
...
@@ -628,9 +628,9 @@ void CDECL ber_free(BerElement*,INT);
BerElement
*
CDECL
ber_init
(
BERVAL
*
);
ULONG
CDECL
ber_next_element
(
BerElement
*
,
ULONG
*
,
CHAR
*
);
ULONG
CDECL
ber_peek_tag
(
BerElement
*
,
ULONG
*
);
INT
CDECL
ber_printf
(
BerElement
*
,
PCHAR
,...);
INT
WINAPIV
ber_printf
(
BerElement
*
,
PCHAR
,...);
ULONG
CDECL
ber_skip_tag
(
BerElement
*
,
ULONG
*
);
INT
CDECL
ber_scanf
(
BerElement
*
,
PCHAR
,...);
INT
WINAPIV
ber_scanf
(
BerElement
*
,
PCHAR
,...);
ULONG
CDECL
LdapGetLastError
(
void
);
ULONG
CDECL
LdapMapErrorToWin32
(
ULONG
);
...
...
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